public function CacheWarmerAggregate::isOptional

Checks whether this warmer is optional or not.

Return value

Boolean always true

Overrides CacheWarmerInterface::isOptional

File

drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/CacheWarmer/CacheWarmerAggregate.php, line 56

Class

CacheWarmerAggregate
Aggregates several cache warmers into a single one.

Namespace

Symfony\Component\HttpKernel\CacheWarmer

Code

public function isOptional() {
  return false;
}