public function CacheWarmerAggregate::isOptional in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/CacheWarmer/CacheWarmerAggregate.php \Symfony\Component\HttpKernel\CacheWarmer\CacheWarmerAggregate::isOptional()
Checks whether this warmer is optional or not.
Return value
bool always false
Overrides CacheWarmerInterface::isOptional
File
- vendor/
symfony/ http-kernel/ CacheWarmer/ CacheWarmerAggregate.php, line 57
Class
- CacheWarmerAggregate
- Aggregates several cache warmers into a single one.
Namespace
Symfony\Component\HttpKernel\CacheWarmerCode
public function isOptional() {
return false;
}