1KA_F2F/frontend/drupal9/web/modules/contrib/ctools/ctools.post_update.php
2022-10-07 15:20:07 +02:00

16 lines
352 B
PHP

<?php
/**
* @file
* ctools updates once other modules have made their own updates.
*/
/**
* Invalidate the service container to force EntityBundleConstriant is Removed.
*/
function ctools_post_update_remove_entitybundleconstraint() {
// Reload the service container.
$kernel = \Drupal::service('kernel');
$kernel->invalidateContainer();
}