fa61bab38e49b5674d89de559bd12c611fe6b98f
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / rebuild.twig
1 /**
2  * Implements hook_rebuild().
3  */
4 function {{ machine_name }}_rebuild() {
5   $themes = \Drupal::service('theme_handler')->listInfo();
6   foreach ($themes as $theme) {
7     _block_rehash($theme->getName());
8   }
9 }