blob: 0df8b4dc68ecb3f79b20178d0645bc1f81d880d7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* @file
* Install, update and uninstall functions for the taxonomy module.
*/
/**
* Implements hook_update_last_removed().
*/
function taxonomy_update_last_removed(): int {
return 10100;
}
|