update_test_last_removed.install in Drupal 8
Update functions for the update_test_last_removed module.
File
core/modules/system/tests/modules/update_test_last_removed/update_test_last_removed.installView source
<?php
/**
* @file
* Update functions for the update_test_last_removed module.
*/
/**
* Implements hook_update_last_removed().
*/
function update_test_last_removed_update_last_removed() {
return 8002;
}
/**
* Dummy update function to run during the tests.
*/
function update_test_last_removed_update_8003() {
return 'The update_test_last_removed_update_8003() update was executed successfully.';
}
Functions
Name | Description |
---|---|
update_test_last_removed_update_8003 | Dummy update function to run during the tests. |
update_test_last_removed_update_last_removed | Implements hook_update_last_removed(). |