Change record status: 
Project: 
Introduced in branch: 
11.5.x
Introduced in version: 
11.5.0
Description: 

The static method FileStorageFactory::getSync() has been replaced with a non-static method: FileStorageFactory::get(). Modules using the factory will need to update service definitions to use the new method:

Before:

    factory: Drupal\Core\Config\FileStorageFactory::getSync

After:

    factory: ['@config.file_storage.factory', 'get']
Impacts: 
Module developers