1 | <?php |
||
33 | class Delegator extends ObjectAbstract implements DelegatorInterface, ConfigInterface |
||
34 | { |
||
35 | use DelegatorTrait; |
||
36 | |||
37 | /** |
||
38 | * {@inheritDoc} |
||
39 | */ |
||
40 | public function get(/*# string */ $key, $default = null) |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | */ |
||
51 | public function has(/*# string */ $key)/*# : bool */ |
||
55 | |||
56 | /** |
||
57 | * {@inheritDoc} |
||
58 | */ |
||
59 | protected function isValidContainer($container)/*# : bool */ |
||
63 | |||
64 | /** |
||
65 | * {@inheritDoc} |
||
66 | */ |
||
67 | protected function hasInContainer( |
||
74 | |||
75 | /** |
||
76 | * {@inheritDoc} |
||
77 | */ |
||
78 | protected function getFromContainer( |
||
85 | } |
||
86 |