1 | <?php |
||
11 | class AbstractClientServiceFactory implements AbstractFactoryInterface |
||
|
|||
12 | { |
||
13 | |||
14 | /** |
||
15 | * @param ContainerInterface $container |
||
16 | * @param string $requestedName |
||
17 | * @return bool |
||
18 | */ |
||
19 | public function canCreate(ContainerInterface $container, $requestedName) |
||
23 | |||
24 | /** |
||
25 | * @param ContainerInterface $container |
||
26 | * @param string $requestedName |
||
27 | * @param array|null $options |
||
28 | * @return AbstractFactory |
||
29 | * @throws \Zend\ServiceManager\Exception\ServiceNotFoundException |
||
30 | */ |
||
31 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) |
||
47 | |||
48 | /** |
||
49 | * {@inheritDoc} |
||
50 | * @throws ServiceNotFoundException |
||
51 | */ |
||
52 | public function canCreateServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName) |
||
56 | |||
57 | /** |
||
58 | * {@inheritDoc} |
||
59 | * @throws ServiceNotFoundException |
||
60 | */ |
||
61 | public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName) |
||
65 | |||
66 | /** |
||
67 | * @param ContainerInterface $container |
||
68 | * @param $name |
||
69 | * @return array|bool |
||
70 | * @throws \Interop\Container\Exception\NotFoundException |
||
71 | * @throws \Interop\Container\Exception\ContainerException |
||
72 | */ |
||
73 | protected function getServiceFactoryMapping(ContainerInterface $container, $name) |
||
99 | } |
||
100 |
This class, trait or interface has been deprecated. The supplier of the file has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the type will be removed from the class and what other constant to use instead.