| 1 | <?php  | 
            ||
| 17 | abstract class StaticDictionary implements StaticDictionaryInterface  | 
            ||
| 18 | { | 
            ||
| 19 | /** @var array Dictionary values (to be overloaded). */  | 
            ||
| 20 | protected static $dictionary = [];  | 
            ||
| 21 | |||
| 22 | /**  | 
            ||
| 23 |      * {@inheritdoc} | 
            ||
| 24 | */  | 
            ||
| 25 | 1 | public static function all()  | 
            |
| 29 | |||
| 30 | /**  | 
            ||
| 31 |      * {@inheritdoc} | 
            ||
| 32 | */  | 
            ||
| 33 | 1 | public static function get($key)  | 
            |
| 42 | |||
| 43 | /**  | 
            ||
| 44 |      * {@inheritdoc} | 
            ||
| 45 | */  | 
            ||
| 46 | 1 | public static function has($key)  | 
            |
| 50 | |||
| 51 | /**  | 
            ||
| 52 |      * {@inheritdoc} | 
            ||
| 53 | */  | 
            ||
| 54 | 1 | public static function find($value)  | 
            |
| 60 | |||
| 61 | /**  | 
            ||
| 62 |      * {@inheritdoc} | 
            ||
| 63 | */  | 
            ||
| 64 | 1 | public static function keys()  | 
            |
| 68 | |||
| 69 | /**  | 
            ||
| 70 |      * {@inheritdoc} | 
            ||
| 71 | */  | 
            ||
| 72 | 1 | public static function values()  | 
            |
| 76 | }  | 
            ||
| 77 |