public function ConfigDataCollector::hasXDebug in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php \Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector::hasXDebug()
Returns true if the XDebug is enabled.
Return value
bool true if XDebug is enabled, false otherwise
File
- vendor/
symfony/ http-kernel/ DataCollector/ ConfigDataCollector.php, line 180
Class
- ConfigDataCollector
- ConfigDataCollector.
Namespace
Symfony\Component\HttpKernel\DataCollectorCode
public function hasXDebug() {
return $this->data['xdebug_enabled'];
}