File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,14 +14,14 @@ final class LaminasCacheModule
1414 /** @return array<string, mixed> */
1515 public function getConfig (): array
1616 {
17- $ provider = new LaminasCacheConfigProvider ();
17+ $ configProvider = new LaminasCacheConfigProvider ();
1818
1919 // laminas-cache exposes its ServiceManager wiring under the `dependencies` key.
2020 // Laminas MVC consumes `service_manager`, so we map it here.
2121 //
2222 // Also include the installed adapter packages' delegators so the AdapterPluginManager
2323 // knows how to create the configured adapters (e.g. Memory, Filesystem).
24- $ serviceManagerConfig = $ provider ->getDependencyConfig ();
24+ $ serviceManagerConfig = $ configProvider ->getDependencyConfig ();
2525 $ serviceManagerConfig ['delegators ' ][AdapterPluginManager::class] ??= [];
2626 $ serviceManagerConfig ['delegators ' ][AdapterPluginManager::class] = array_values (array_unique (array_merge (
2727 $ serviceManagerConfig ['delegators ' ][AdapterPluginManager::class],
You can’t perform that action at this time.
0 commit comments