| 1 | <?php |
||
| 11 | trait HasDictionaryTrait |
||
| 12 | { |
||
| 13 | |||
| 14 | protected static $dictionary; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @param $inflection |
||
| 18 | * @param $string |
||
| 19 | * @return bool |
||
| 20 | */ |
||
| 21 | 19 | protected static function hasString($inflection, $string) |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param $inflection |
||
| 28 | * @param $string |
||
| 29 | * @return bool |
||
| 30 | */ |
||
| 31 | 19 | protected static function getString($inflection, $string) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * @param $inflection |
||
| 41 | * @param $string |
||
| 42 | * @param $value |
||
| 43 | */ |
||
| 44 | 13 | protected static function setString($inflection, $string, $value) |
|
| 48 | } |
||
| 49 |