summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/language/language.post_update.php
blob: 350d83cfc68209fdcc7cb580d5da771e9ef7609d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * @file
 * Post update functions for Language module.
 */

/**
 * Implements hook_removed_post_updates().
 */
function language_removed_post_updates(): array {
  return [
    'language_post_update_language_select_widget' => '9.0.0',
  ];
}