| 1 | <?php |
||
| 10 | class ErrorHandlerManagerFactory |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Create an object |
||
| 14 | * |
||
| 15 | * @param ContainerInterface $container |
||
| 16 | * @return object |
||
| 17 | * @throws ServiceNotFoundException if unable to resolve the service. |
||
| 18 | * @throws ServiceNotCreatedException if an exception is raised when |
||
| 19 | * creating a service. |
||
| 20 | * @throws ContainerException if any other error occurs |
||
| 21 | */ |
||
| 22 | 1 | public function __invoke(ContainerInterface $container) |
|
| 29 | } |
||
| 30 |