You are here

protected property UpdateHookRegistry::$allAvailableSchemaVersions in Drupal 9

A static cache of schema currentVersions per module.

Stores schema versions of the modules based on their defined hook_update_N implementations. Example: ``` [ 'example_module' => [ 8000, 8001, 8002 ] ] ```

Type: int[][]

See also

\Drupal\Core\Update\UpdateHookRegistry::getAvailableUpdates()

File

core/lib/Drupal/Core/Update/UpdateHookRegistry.php, line 50

Class

UpdateHookRegistry
Provides module updates versions handling.

Namespace

Drupal\Core\Update

Code

protected $allAvailableSchemaVersions = [];