You are here

public function CacheWarmerAggregate::isOptional in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 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\CacheWarmer

Code

public function isOptional() {
  return false;
}