public function PhpConfigDataCollector::hasXDebug in Devel 8.3
Same name and namespace in other branches
- 8 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasXDebug()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasXDebug()
- 4.x webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasXDebug()
Returns true if the XDebug is enabled.
Return value
Boolean true if XDebug is enabled, false otherwise
File
- webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 59
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function hasXDebug() {
return $this->data['xdebug_enabled'];
}