Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / updater_info_alter.twig
1 /**
2  * Implements hook_updater_info_alter().
3  */
4 function {{ machine_name }}_updater_info_alter(&$updaters) {
5   // Adjust weight so that the theme Updater gets a chance to handle a given
6   // update task before module updaters.
7   $updaters['theme']['weight'] = -1;
8 }