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