Conditions | 3 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
58 | public static function rules($id = 0, $merge = []) |
||
59 | { |
||
60 | return array_merge( |
||
61 | [ |
||
62 | 'name' => 'required|min:3|max:50|unique:themes,name'.($id ? ",$id" : ''), |
||
63 | 'link' => 'required|min:3|max:255|unique:themes,link'.($id ? ",$id" : ''), |
||
64 | 'notes' => 'max:500', |
||
65 | 'status' => 'required', |
||
66 | ], |
||
67 | $merge); |
||
68 | } |
||
82 |