1 | <?php |
||
43 | class Delegator extends ObjectAbstract implements DelegatorInterface, \ArrayAccess |
||
|
|||
44 | { |
||
45 | use DelegatorTrait, ArrayAccessTrait, DelegatorWritableTrait; |
||
46 | |||
47 | /** |
||
48 | * {@inheritDoc} |
||
49 | */ |
||
50 | public function get($id) |
||
61 | |||
62 | /** |
||
63 | * {@inheritDoc} |
||
64 | */ |
||
65 | public function has($id) |
||
69 | |||
70 | /** |
||
71 | * {@inheritDoc} |
||
72 | */ |
||
73 | public function set(/*# string */ $id, $value) |
||
85 | |||
86 | /** |
||
87 | * {@inheritDoc} |
||
88 | */ |
||
89 | public function addContainer(ContainerInterface $container) |
||
93 | |||
94 | /** |
||
95 | * {@inheritDoc} |
||
96 | */ |
||
97 | protected function isValidRegistry($registry)/*# : bool */ |
||
101 | |||
102 | /** |
||
103 | * {@inheritDoc} |
||
104 | */ |
||
105 | protected function hasInRegistry( |
||
112 | |||
113 | /** |
||
114 | * {@inheritDoc} |
||
115 | */ |
||
116 | protected function getFromRegistry( |
||
123 | } |
||
124 |