Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 87.5% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | trait HasDictionaryTrait |
||
12 | { |
||
13 | protected static $dictionary; |
||
14 | |||
15 | /** |
||
16 | * @param $inflection |
||
17 | * @param $string |
||
18 | * @return bool |
||
19 | */ |
||
20 | 21 | protected static function hasString($inflection, $string) |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * @param $inflection |
||
27 | * @param $string |
||
28 | * @return bool |
||
29 | */ |
||
30 | 21 | protected static function getString($inflection, $string) |
|
36 | } |
||
37 | |||
38 | /** |
||
39 | * @param $inflection |
||
40 | * @param $string |
||
41 | * @param $value |
||
42 | */ |
||
43 | 15 | protected static function setString($inflection, $string, $value) |
|
48 |