1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- *
- *
- * @category xxx
- * @package PSR
- * @subpackage Documentation\API
- * @author xxx <xxx@xxx.com>
- * @license GPL https://xxx.com
- * @link https://xxx.com
- * @ctime: 2020/5/19 9:56
- */
- namespace App\Http\Requests;
- use App\Validators\Rules;
- class PunishmentOrderRequest extends FormRequest
- {
- public function rules(){
- return [
- 'no' => Rules::no,
- ];
- }
- }
|