function 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 123

Class

PhpConfigDataCollector
Provides a data collector to collect all kind of php information.

Namespace

Drupal\webprofiler\DataCollector

Code

public function hasAccelerator() {
    return $this->hasApc() || $this->hasZendOpcache() || $this->hasEAccelerator() || $this->hasXCache() || $this->hasWinCache();
}