| 1 | <?php |
||
| 26 | class Request extends BaseRequest |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Get the validation rules that apply to the request. |
||
| 30 | * |
||
| 31 | * @return array |
||
| 32 | * |
||
| 33 | * @author Bertrand Kintanar <[email protected]> |
||
| 34 | */ |
||
| 35 | 196 | public function rules() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Determine if the user is authorized to make this request. |
||
| 45 | * |
||
| 46 | * @return bool |
||
| 47 | * |
||
| 48 | * @author Bertrand Kintanar <[email protected]> |
||
| 49 | */ |
||
| 50 | 196 | public function authorize() |
|
| 54 | } |
||
| 55 |