Checks if debug mode is enabled.
@api
Return value
Boolean true if debug mode is enabled, false otherwise
Overrides KernelInterface::isDebug
File
- drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/Kernel.php, line 383
Class
- Kernel
- The Kernel is the heart of the Symfony system.
Namespace
Symfony\Component\HttpKernel
Code
public function isDebug() {
return $this->debug;
}