Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | public function rules() |
||
28 | { |
||
29 | return [ |
||
30 | 'title' => SermonHelper::$titleValidation, |
||
31 | 'preacher' => SermonHelper::$titleValidation, |
||
32 | 'main_verses' => 'required|array', |
||
33 | 'date' => 'required|date', |
||
34 | 'reference_verses' => 'array', |
||
35 | 'sermon' => 'required|string|min:50', |
||
36 | 'resource' => 'sometimes|url', |
||
37 | 'image' => 'base64image', |
||
38 | ]; |
||
46 |