summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/text
diff options
context:
space:
mode:
authorcatch <6915-catch@users.noreply.drupalcode.org>2024-11-11 21:18:02 +0000
committercatch <6915-catch@users.noreply.drupalcode.org>2024-11-11 21:18:02 +0000
commit9028e2693e9831aa919b43cef39ba869d228593b (patch)
tree33ffccce51b9a4188d3396976b488db25ac831e2 /core/modules/text
parent052c0c265059da5e0fd869a08f02855d826ac4df (diff)
downloaddrupal-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.php2
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',