Total Complexity | 2 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class Delegate implements FactoryInterface |
||
14 | { |
||
15 | public function createService(ServiceLocatorInterface $serviceLocator, $cName = null, $rName = null) |
||
16 | { |
||
17 | return $this($serviceLocator->getServiceLocator(), $rName); |
||
|
|||
18 | } |
||
19 | |||
20 | public function __invoke(ContainerInterface $container, $name, $options = []) |
||
27 | ); |
||
28 | |||
30 | } |