public function Kernel::getCacheDir

@api

Overrides KernelInterface::getCacheDir

5 calls to Kernel::getCacheDir()
Kernel::buildContainer in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Builds the service container.
Kernel::doLoadClassCache in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Kernel::getKernelParameters in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Returns the kernel parameters.
Kernel::initializeContainer in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Initializes the service container.
Kernel::setClassCache in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php
Used internally.

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 431

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function getCacheDir() {
  return $this->rootDir . '/cache/' . $this->environment;
}