14 lines
194 B
PHP
14 lines
194 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Update functions for the Serialization module.
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_update_last_removed().
|
|
*/
|
|
function serialization_update_last_removed(): int {
|
|
return 8401;
|
|
}
|