It seems like the GitHub access token used for retrieving details about this repository from
GitHub became invalid. This might prevent certain types of inspections from being run (in
particular,
everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
The interface Zend\ServiceManager\FactoryInterface has been deprecated with message: Use Zend\ServiceManager\Factory\FactoryInterface instead.
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.
Loading history...
14
{
15
16
/**
17
* Create an object
18
*
19
* @param ContainerInterface $container
20
* @param string $requestedName
21
* @param null|array $options
22
*
23
* @return ResolverManager
24
* @throws ServiceNotFoundException if unable to resolve the service.
25
* @throws ServiceNotCreatedException if an exception is raised when
26
* creating a service.
27
* @throws ContainerException if any other error occurs
28
*/
29
1
public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
30
{
31
1
$resolverManager = new ResolverManager($container, $container->get('Config')['htimg']['resolvers_manager']);
32
33
1
return $resolverManager;
34
}
35
36
1
public function createService(ServiceLocatorInterface $serviceLocator)
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.