Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
20 | public function rules(): array |
||
21 | { |
||
22 | return [ |
||
23 | 'avatar' => 'sometimes|nullable|image|mimes:jpeg,jpg,png|max:2048', |
||
24 | 'name' => 'required|string|min:3', |
||
25 | 'email' => 'required|string|email', |
||
26 | 'position' => 'required|string|min:3', |
||
27 | 'body' => 'required|string|min:20', |
||
28 | 'stars' => 'required|integer|max:5', |
||
29 | ]; |
||
60 |