ZF\Apigility\Admin\Controller\AuthenticationTypeControllerFactory::createService PHP Метод

createService() публичный Метод

public createService ( Zend\ServiceManager\ServiceLocatorInterface $container ) : AuthenticationTypeController
$container Zend\ServiceManager\ServiceLocatorInterface
Результат AuthenticationTypeController
    public function createService(ServiceLocatorInterface $container)
    {
        if ($container instanceof AbstractPluginManager) {
            $container = $container->getServiceLocator() ?: $container;
        }
        return $this($container, AuthenticationTypeController::class);
    }
AuthenticationTypeControllerFactory