| 1 | <?php |
||
| 14 | class Request extends BaseRequest |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Get the validation rules that apply to the request. |
||
| 18 | * |
||
| 19 | * @return array |
||
| 20 | * |
||
| 21 | * @author Bertrand Kintanar <[email protected]> |
||
| 22 | */ |
||
| 23 | 164 | public function rules() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * Determine if the user is authorized to make this request. |
||
| 33 | * |
||
| 34 | * @return bool |
||
| 35 | * |
||
| 36 | * @author Bertrand Kintanar <[email protected]> |
||
| 37 | */ |
||
| 38 | 164 | public function authorize() |
|
| 42 | } |
||
| 43 |