1 | <?php |
||
9 | class AbstractActivatorDecorator implements ActivatorDecorator |
||
10 | { |
||
11 | /** |
||
12 | * |
||
13 | * @var Activator |
||
14 | */ |
||
15 | protected $wrappedActivator = null; |
||
16 | |||
17 | public function setNext(Activator $activator) |
||
22 | |||
23 | public function createInstance(Container $container, $serviceName, array $serviceConfig) |
||
29 | |||
30 | protected function before(Container $container, &$serviceName, array &$serviceConfig) |
||
34 | |||
35 | protected function after(Container $container, &$serviceName, array &$serviceConfig, $returnObject) |
||
39 | |||
40 | protected function aroundNext(Container $container, &$serviceName, array &$serviceConfig) |
||
48 | } |
||
49 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.