blob: 3114e7a3e615bb09d068231a0336345265259bb0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* @file
* Update functions for the Serialization module.
*/
/**
* Implements hook_update_last_removed().
*/
function serialization_update_last_removed(): int {
return 8401;
}
|