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
public function createService(ServiceLocatorInterface $serviceLocator)
The method Zend\ServiceManager\Serv...er::getServiceLocator() has been deprecated with message: since 3.0.0. Factories using 3.0 should use the container instance passed to the factory instead.
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be
removed from the class and what other method or class to use instead.
Loading history...
20
21
$console = $sm->get('Console');
22
$config = $sm->get('ZfSnapGeoip\DatabaseConfig');
23
$httpClient = $sm->get('ZfSnapGeoip\HttpClient');
24
25
return new ConsoleController($console, $config, $httpClient);