Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 3.576 |
Changes | 0 |
1 | <?php |
||
32 | 3 | public static function ensureValidValue($value) |
|
33 | { |
||
34 | 3 | if (is_numeric($value) || $value instanceof Money) { |
|
35 | 3 | return $value; |
|
36 | } |
||
37 | |||
38 | /// TODO: add convertion from string |
||
39 | |||
40 | /// TODO: add special exception |
||
41 | var_dump($value); |
||
|
|||
42 | throw new \Exception('invalid discount value'); |
||
43 | } |
||
44 | } |
||
45 |