1 | <?php |
||
33 | class Delegator extends ObjectAbstract implements \ArrayAccess, DelegatorInterface, ConfigInterface |
||
34 | { |
||
35 | use ArrayAccessTrait, DelegatorTrait; |
||
36 | |||
37 | /** |
||
38 | * constructor |
||
39 | * |
||
40 | * @access public |
||
41 | */ |
||
42 | public function __construct() |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | public function get(/*# string */ $key, $default = null) |
||
58 | |||
59 | /** |
||
60 | * {@inheritDoc} |
||
61 | */ |
||
62 | public function has(/*# string */ $key)/*# : bool */ |
||
66 | |||
67 | /** |
||
68 | * {@inheritDoc} |
||
69 | */ |
||
70 | public function set(/*# string */ $key, $value) |
||
77 | |||
78 | /** |
||
79 | * {@inheritDoc} |
||
80 | */ |
||
81 | protected function isValidRegistry($registry)/*# : bool */ |
||
85 | |||
86 | /** |
||
87 | * {@inheritDoc} |
||
88 | */ |
||
89 | protected function hasInRegistry( |
||
96 | |||
97 | /** |
||
98 | * {@inheritDoc} |
||
99 | */ |
||
100 | protected function getFromRegistry( |
||
107 | } |
||
108 |