diff options
author | catch <6915-catch@users.noreply.drupalcode.org> | 2024-11-11 21:18:02 +0000 |
---|---|---|
committer | catch <6915-catch@users.noreply.drupalcode.org> | 2024-11-11 21:18:02 +0000 |
commit | 9028e2693e9831aa919b43cef39ba869d228593b (patch) | |
tree | 33ffccce51b9a4188d3396976b488db25ac831e2 /core/modules/text | |
parent | 052c0c265059da5e0fd869a08f02855d826ac4df (diff) | |
download | drupal-9028e2693e9831aa919b43cef39ba869d228593b.tar.gz drupal-9028e2693e9831aa919b43cef39ba869d228593b.zip |
Issue #3483040 by quietone: Add array return type to all hook_removed_post_updates implementations
Diffstat (limited to 'core/modules/text')
-rw-r--r-- | core/modules/text/text.post_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/modules/text/text.post_update.php b/core/modules/text/text.post_update.php index a3cfbd5f2f0..730bda0b97f 100644 --- a/core/modules/text/text.post_update.php +++ b/core/modules/text/text.post_update.php @@ -8,7 +8,7 @@ /** * Implements hook_removed_post_updates(). */ -function text_removed_post_updates() { +function text_removed_post_updates(): array { return [ 'text_post_update_add_required_summary_flag' => '9.0.0', 'text_post_update_add_required_summary_flag_form_display' => '10.0.0', |