class KernelForTest

Hierarchy

Expanded class hierarchy of KernelForTest

1 file declares its use of KernelForTest
KernelTest.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/KernelTest.php

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Tests/Fixtures/KernelForTest.php, line 17

Namespace

Symfony\Component\HttpKernel\Tests\Fixtures
View source
class KernelForTest extends Kernel {
  public function getBundleMap() {
    return $this->bundleMap;
  }
  public function registerBundles() {
  }
  public function init() {
  }
  public function registerBundleDirs() {
  }
  public function registerContainerConfiguration(LoaderInterface $loader) {
  }
  public function initializeBundles() {
    parent::initializeBundles();
  }
  public function isBooted() {
    return $this->booted;
  }
  public function setIsBooted($value) {
    $this->booted = (bool) $value;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
HttpKernelInterface::MASTER_REQUEST constant
HttpKernelInterface::SUB_REQUEST constant
Kernel::$booted protected property
Kernel::$bundleMap protected property
Kernel::$bundles protected property
Kernel::$classes protected property
Kernel::$container protected property
Kernel::$debug protected property
Kernel::$environment protected property
Kernel::$loadClassCache protected property
Kernel::$name protected property 1
Kernel::$rootDir protected property
Kernel::$startTime protected property
Kernel::boot public function Boots the current kernel. Overrides KernelInterface::boot 1
Kernel::buildContainer protected function Builds the service container. 1
Kernel::doLoadClassCache protected function
Kernel::dumpContainer protected function Dumps the service container to PHP code in the cache.
Kernel::EXTRA_VERSION constant
Kernel::getBundle public function @api Overrides KernelInterface::getBundle
Kernel::getBundles public function @api Overrides KernelInterface::getBundles 1
Kernel::getCacheDir public function @api Overrides KernelInterface::getCacheDir
Kernel::getCharset public function @api Overrides KernelInterface::getCharset
Kernel::getContainer public function @api Overrides KernelInterface::getContainer
Kernel::getContainerBaseClass protected function Gets the container's base class.
Kernel::getContainerBuilder protected function Gets a new ContainerBuilder instance used to build the service container. 1
Kernel::getContainerClass protected function Gets the container class.
Kernel::getContainerLoader protected function Returns a loader for the container.
Kernel::getEnvironment public function @api Overrides KernelInterface::getEnvironment
Kernel::getEnvParameters protected function Gets the environment parameters.
Kernel::getHttpKernel protected function Gets a http kernel from the container
Kernel::getKernelParameters protected function Returns the kernel parameters.
Kernel::getLogDir public function @api Overrides KernelInterface::getLogDir
Kernel::getName public function @api Overrides KernelInterface::getName 1
Kernel::getRootDir public function @api Overrides KernelInterface::getRootDir
Kernel::getStartTime public function @api Overrides KernelInterface::getStartTime
Kernel::handle public function @api Overrides HttpKernelInterface::handle
Kernel::initializeContainer protected function Initializes the service container. 1
Kernel::isClassInActiveBundle public function @api Overrides KernelInterface::isClassInActiveBundle
Kernel::isDebug public function @api Overrides KernelInterface::isDebug
Kernel::loadClassCache public function Loads the PHP class cache.
Kernel::locateResource public function Returns the file path for a given resource. Overrides KernelInterface::locateResource
Kernel::MAJOR_VERSION constant
Kernel::MINOR_VERSION constant
Kernel::prepareContainer protected function Prepares the ContainerBuilder before it is compiled.
Kernel::RELEASE_VERSION constant
Kernel::serialize public function 1
Kernel::setClassCache public function Used internally.
Kernel::shutdown public function @api Overrides KernelInterface::shutdown
Kernel::stripComments public static function Removes comments from a PHP source string.
Kernel::terminate public function @api Overrides TerminableInterface::terminate
Kernel::unserialize public function 1
Kernel::VERSION constant
Kernel::VERSION_ID constant
Kernel::__clone public function
Kernel::__construct public function Constructor. 1
KernelForTest::getBundleMap public function
KernelForTest::init public function Overrides Kernel::init
KernelForTest::initializeBundles public function Initializes the data structures related to the bundle management. Overrides Kernel::initializeBundles
KernelForTest::isBooted public function
KernelForTest::registerBundleDirs public function
KernelForTest::registerBundles public function Returns an array of bundles to registers. Overrides KernelInterface::registerBundles
KernelForTest::registerContainerConfiguration public function Loads the container configuration Overrides KernelInterface::registerContainerConfiguration
KernelForTest::setIsBooted public function