Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | 1 | public function rules() |
|
14 | { |
||
15 | return [ |
||
16 | 1 | 'name' => 'required|string|max:255', |
|
17 | 'value' => 'required|numeric|min:0|unique:' . Denomination::class, |
||
18 | 'type' => 'required|enum:' . DenominationType::class, |
||
19 | 'quantity_per_bundle' => 'required|numeric|min:0', |
||
20 | 'minimum_order_bundle' => 'required|numeric|min:0', |
||
21 | 'maximum_order_bundle' => 'required|numeric|gte:minimum_order_bundle', |
||
22 | 'image' => 'sometimes|nullable|image', |
||
23 | ]; |
||
48 |