12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/3/16 11:01
- */
- namespace App\Http\Requests;
- class OrderBikePositionRequest extends FormRequest
- {
- /**
- * Get the validation rules that apply to the request.
- *
- * @return array
- */
- public function rules()
- {
- return [
- 'bike_no' => 'required|string',
- ];
- }
- }
|