| 1 | <?php |
||
| 13 | class IpAddressMiddlewareFactory implements FactoryInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * Create an object |
||
| 17 | * |
||
| 18 | * @param ContainerInterface $container |
||
| 19 | * @param string $requestedName |
||
| 20 | * @param null|array $options |
||
| 21 | * @throws ServiceNotFoundException if unable to resolve the service. |
||
| 22 | * @throws ServiceNotCreatedException if an exception is raised when creating a service. |
||
| 23 | */ |
||
| 24 | 1 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null): IpAddress |
|
| 28 | } |
||
| 29 |