Conditions | 3 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
91 | public static function rules($id = 0, $merge = []) |
||
92 | { |
||
93 | return array_merge( |
||
94 | [ |
||
95 | 'name' => 'required|min:3|max:50|unique:themes,name'.($id ? ",$id" : ''), |
||
96 | 'link' => 'required|min:3|max:255|unique:themes,link'.($id ? ",$id" : ''), |
||
97 | 'notes' => 'max:500', |
||
98 | 'status' => 'required', |
||
99 | ], |
||
100 | $merge |
||
101 | ); |
||
112 |