public function PhpConfigDataCollector::hasAccelerator in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasAccelerator()
- 8 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasAccelerator()
- 8.2 webprofiler/src/DataCollector/PhpConfigDataCollector.php \Drupal\webprofiler\DataCollector\PhpConfigDataCollector::hasAccelerator()
Returns true if any accelerator is enabled.
Return value
Boolean true if any accelerator is enabled, false otherwise
File
- webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 122
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function hasAccelerator() {
return $this
->hasApc() || $this
->hasZendOpcache() || $this
->hasEAccelerator() || $this
->hasXCache() || $this
->hasWinCache();
}