| 1 | <?php |
||
| 17 | class EntityAbstractFactory implements AbstractFactoryInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @inheritdoc |
||
| 21 | * |
||
| 22 | * @param ServiceLocatorInterface $serviceLocator |
||
| 23 | * @param $name |
||
| 24 | * @param $requestedName |
||
| 25 | * |
||
| 26 | * @return boolean |
||
| 27 | */ |
||
| 28 | public function canCreateServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName) |
||
| 32 | |||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | * |
||
| 37 | * @param ServiceLocatorInterface $serviceLocator |
||
| 38 | * @param $name |
||
| 39 | * @param $requestedName |
||
| 40 | * |
||
| 41 | * @return mixed |
||
| 42 | */ |
||
| 43 | public function createServiceWithName(ServiceLocatorInterface $serviceLocator, $name, $requestedName) |
||
| 48 | } |
||
| 49 |