We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c9b57f + 9eca5fd commit 6a0c682Copy full SHA for 6a0c682
setup/src/Magento/Setup/Module/Di/Compiler/Config/Reader.php
@@ -99,6 +99,12 @@ public function generateCachePerScope(
99
foreach (array_keys($areaConfig->getVirtualTypes()) as $virtualType) {
100
$config['instanceTypes'][$virtualType] = $areaConfig->getInstanceType($virtualType);
101
}
102
+
103
+ // sort configuration to have it in the same order on every build
104
+ ksort($config['arguments']);
105
+ ksort($config['preferences']);
106
+ ksort($config['instanceTypes']);
107
108
return $config;
109
110
0 commit comments