Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3.0416 |
Changes | 0 |
1 | <?php |
||
22 | 11 | protected static function findUnit($unit) |
|
23 | { |
||
24 | 11 | if ($unit instanceof UnitInterface) { |
|
25 | 6 | return $unit; |
|
26 | } |
||
27 | 11 | if (!is_string($unit)) { |
|
28 | throw new InvalidArgumentException('uncompatible unit name: ' . var_export($unit, true)); |
||
29 | } |
||
30 | |||
31 | 11 | return Unit::$unit(); |
|
32 | } |
||
33 | } |
||
34 |