1 | <?php |
||
24 | class DataTransformerFactory implements FactoryInterface |
||
25 | { |
||
26 | /** |
||
27 | * Create a DataTransformer |
||
28 | * |
||
29 | * @param ContainerInterface $container |
||
30 | * @param string $requestedName |
||
31 | * @param array $options |
||
32 | * |
||
33 | * @return DataTransformer |
||
34 | */ |
||
35 | 1 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
|
51 | |||
52 | /** |
||
53 | * Create service |
||
54 | * |
||
55 | * @param ServiceLocatorInterface $serviceLocator |
||
56 | * |
||
57 | * @return DataTransformer |
||
58 | */ |
||
59 | 1 | public function createService(ServiceLocatorInterface $serviceLocator) |
|
63 | } |