You are here

public static function CacheCommands::clearBootstrap in Helper 8

Clears the bootstrap cache.

File

src/Commands/CacheCommands.php, line 37

Class

CacheCommands
Drush commands for clearing caches.

Namespace

Drupal\helper\Commands

Code

public static function clearBootstrap() {
  \Drupal::cache('bootstrap')
    ->deleteAll();
}