Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / system / tests / modules / system_module_test / system_module_test.install
1 <?php
2
3 /**
4  * @file
5  * Install, update, and uninstall functions for the System test module.
6  */
7
8 use Drupal\Core\Cache\Cache;
9
10 /**
11  * Implements hook_install().
12  */
13 function system_module_test_install() {
14   Cache::invalidateTags(['rendered']);
15 }