Conditions | 2 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 2.0625 |
Changes | 0 |
1 | <?php |
||
31 | 19 | protected static function getString($inflection, $string) |
|
32 | { |
||
33 | 19 | if (!self::hasString($inflection, $string)) { |
|
34 | throw new \BadMethodCallException("String {$string} is not contained in the {$inflection} dictionary"); |
||
35 | } |
||
36 | 19 | return self::$dictionary[$inflection][$string]; |
|
37 | } |
||
38 | |||
49 |