| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | public function rules(): array |
||
| 8 | { |
||
| 9 | return [ |
||
| 10 | 'sizes_to_upload' => [ |
||
| 11 | 'required', |
||
| 12 | 'array', |
||
| 13 | ], |
||
| 14 | 'sizes_to_upload.*' => [ |
||
| 15 | 'string', |
||
| 16 | 'max:100', |
||
| 17 | ], |
||
| 18 | 'upload' => [ |
||
| 19 | 'required', |
||
| 20 | 'image', |
||
| 21 | ], |
||
| 22 | 'image_title' => [ |
||
| 23 | 'required', |
||
| 24 | 'string', |
||
| 25 | 'min:1', |
||
| 26 | 'max:150', |
||
| 27 | ], |
||
| 31 |