| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | public function rules() |
||
| 27 | { |
||
| 28 | return [ |
||
| 29 | 'title' => 'required|string|max:200', |
||
| 30 | 'excerpt' => 'nullable|string', |
||
| 31 | 'text' => 'required|string', |
||
| 32 | 'tags' => 'required|max:6', |
||
| 33 | 'role' => ['required', Rule::in([Role::JUNIOR, Role::MID, Role::SENIOR])], |
||
| 34 | 'tags.*.name' => [ |
||
| 35 | 'bail', |
||
| 36 | 'max:25', |
||
| 37 | 'tag', |
||
| 38 | 'tag_creation:300' |
||
| 39 | ] |
||
| 43 |