We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d97cb commit c8edf62Copy full SHA for c8edf62
1 file changed
src/AppConfig.php
@@ -44,7 +44,10 @@ public function getConfig(): array
44
$config['components']['cache'] = $this->getCache();
45
$config['components']['queue'] = $this->getQueue();
46
$config['components']['assetManager'] = $this->getAssetManager();
47
- $config['container']['definitions'] = $this->getDefinitions();
+ $config['container']['definitions'] = array_merge(
48
+ $config['container']['definitions'] ?? [],
49
+ $this->getDefinitions()
50
+ );
51
52
return $config;
53
}
0 commit comments