function PhpConfigDataCollector::hasWinCache
Returns true if WinCache is enabled.
Return value
Boolean true if WinCache is enabled, false otherwise
1 call to PhpConfigDataCollector::hasWinCache()
- PhpConfigDataCollector::hasAccelerator in webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php - Returns true if any accelerator is enabled.
File
-
webprofiler/
src/ DataCollector/ PhpConfigDataCollector.php, line 114
Class
- PhpConfigDataCollector
- Provides a data collector to collect all kind of php information.
Namespace
Drupal\webprofiler\DataCollectorCode
public function hasWinCache() {
return $this->data['wincache_enabled'];
}