1 | <?php |
||
39 | class Delegator extends ObjectAbstract implements \ArrayAccess, DelegatorInterface, ConfigInterface, WritableInterface |
||
40 | { |
||
41 | use ArrayAccessTrait, DelegatorTrait, WritableTrait; |
||
42 | |||
43 | /** |
||
44 | * constructor |
||
45 | * |
||
46 | * @access public |
||
47 | */ |
||
48 | public function __construct() |
||
51 | |||
52 | /** |
||
53 | * {@inheritDoc} |
||
54 | */ |
||
55 | public function get(/*# string */ $key, $default = null) |
||
62 | |||
63 | /** |
||
64 | * {@inheritDoc} |
||
65 | */ |
||
66 | public function has(/*# string */ $key)/*# : bool */ |
||
70 | |||
71 | /** |
||
72 | * {@inheritDoc} |
||
73 | */ |
||
74 | public function isWritable()/*# : bool */ |
||
86 | |||
87 | /** |
||
88 | * {@inheritDoc} |
||
89 | */ |
||
90 | public function set(/*# string */ $key, $value) |
||
101 | |||
102 | /** |
||
103 | * {@inheritDoc} |
||
104 | */ |
||
105 | protected function isValidRegistry($registry)/*# : bool */ |
||
109 | |||
110 | /** |
||
111 | * {@inheritDoc} |
||
112 | */ |
||
113 | protected function hasInRegistry( |
||
120 | |||
121 | /** |
||
122 | * {@inheritDoc} |
||
123 | */ |
||
124 | protected function getFromRegistry( |
||
131 | } |
||
132 |