public function ConfigDataCollector::hasWinCache 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::hasWinCache()
Returns true if WinCache is enabled.
Return value
bool true if WinCache is enabled, false otherwise
1 call to ConfigDataCollector::hasWinCache()
- ConfigDataCollector::hasAccelerator in vendor/
symfony/ http-kernel/ DataCollector/ ConfigDataCollector.php - Returns true if any accelerator is enabled.
File
- vendor/
symfony/ http-kernel/ DataCollector/ ConfigDataCollector.php, line 230
Class
- ConfigDataCollector
- ConfigDataCollector.
Namespace
Symfony\Component\HttpKernel\DataCollectorCode
public function hasWinCache() {
return $this->data['wincache_enabled'];
}