1 | <?php |
||
7 | class ProjectRequest extends ResourceRequest |
||
8 | { |
||
9 | /** |
||
10 | * Type of resource. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $resourceType = 'project'; |
||
15 | |||
16 | /** |
||
17 | * Get the validation rules that apply to the request. |
||
18 | * |
||
19 | * @return array |
||
20 | */ |
||
21 | public function rules(Request $request) |
||
27 | } |
||
28 |