Run FarmUpdate::rebuild() via hook_rebuild().

This commit is contained in:
Michael Stenta 2021-09-16 06:09:21 -04:00
parent 2dd6a268f8
commit 039eb0fbf5
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?php
/**
* @file
* Hooks and customizations for the farm_update module.
*/
/**
* Implements hook_rebuild().
*/
function farm_update_rebuild() {
\Drupal::service('farm.update')->rebuild();
}