Symfony\Component\HttpKernel\Bundle\Bundle::createContainerExtension PHP 메소드

createContainerExtension() 보호된 메소드

Creates the bundle's container extension.
protected createContainerExtension ( ) : Symfony\Component\DependencyInjection\Extension\ExtensionInterface | null
리턴 Symfony\Component\DependencyInjection\Extension\ExtensionInterface | null
    protected function createContainerExtension()
    {
        if (class_exists($class = $this->getContainerExtensionClass())) {
            return new $class();
        }
    }