You are here

public function Kernel::isDebug in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Kernel.php \Symfony\Component\HttpKernel\Kernel::isDebug()

Checks if debug mode is enabled.

Return value

bool true if debug mode is enabled, false otherwise

Overrides KernelInterface::isDebug

File

vendor/symfony/http-kernel/Kernel.php, line 321

Class

Kernel
The Kernel is the heart of the Symfony system.

Namespace

Symfony\Component\HttpKernel

Code

public function isDebug() {
  return $this->debug;
}