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