| 1 | <?php | ||
| 18 | class CacheStorageFactory implements FactoryInterface | ||
| 19 | { | ||
| 20 | /** | ||
| 21 | * Create an object | ||
| 22 | * | ||
| 23 | * @param ContainerInterface $container | ||
| 24 | * @param string $requestedName | ||
| 25 | * @param null|array $options | ||
| 26 | * @return object | ||
| 27 | * @throws ServiceNotFoundException if unable to resolve the service. | ||
| 28 | * @throws ServiceNotCreatedException if an exception is raised when | ||
| 29 | * creating a service. | ||
| 30 | * @throws ContainerException if any other error occurs | ||
| 31 | */ | ||
| 32 | public function __invoke(ContainerInterface $container, $requestedName, array $options = null) | ||
| 40 | } | ||
| 41 |