Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
14 | public function create($valueObject): CalculationStrategyInterface |
||
15 | { |
||
16 | 6 | switch (true) { |
|
17 | 5 | case $valueObject instanceof Ratio: |
|
18 | 5 | $result = new RatioStrategy($valueObject); |
|
19 | break; |
||
20 | 1 | case $valueObject instanceof Percent: |
|
21 | $result = new PercentStrategy($valueObject); |
||
22 | break; |
||
23 | 5 | default: |
|
24 | throw new InvalidArgumentException('Unknown value object type'); |
||
25 | } |
||
26 | |||
27 | return $result; |
||
28 | } |
||
30 |