@@ -40,8 +40,8 @@ public function __construct(VolumeResolver $volumeResolver)
4040 public function getRo (Config $ config ): array
4141 {
4242 return $ this ->volumeResolver ->normalize (array_merge (
43- $ this ->volumeResolver ->getRootVolume (true ),
44- $ this ->volumeResolver ->getDevVolumes ($ config ->hasServiceEnabled (ServiceInterface::SERVICE_TEST )),
43+ $ this ->volumeResolver ->getRootVolume ($ config , true ),
44+ $ this ->volumeResolver ->getDevVolumes ($ config, $ config ->hasServiceEnabled (ServiceInterface::SERVICE_TEST )),
4545 $ this ->volumeResolver ->getMagentoVolumes ($ config ->getMounts (), true , $ this ->hasGenerated ($ config )),
4646 $ this ->volumeResolver ->getMountVolumes ($ config ->hasTmpMounts ())
4747 ));
@@ -57,8 +57,8 @@ public function getRo(Config $config): array
5757 public function getRw (Config $ config ): array
5858 {
5959 return $ this ->volumeResolver ->normalize (array_merge (
60- $ this ->volumeResolver ->getRootVolume (false ),
61- $ this ->volumeResolver ->getDevVolumes ($ config ->hasServiceEnabled (ServiceInterface::SERVICE_TEST )),
60+ $ this ->volumeResolver ->getRootVolume ($ config , false ),
61+ $ this ->volumeResolver ->getDevVolumes ($ config, $ config ->hasServiceEnabled (ServiceInterface::SERVICE_TEST )),
6262 $ this ->volumeResolver ->getMagentoVolumes ($ config ->getMounts (), false , $ this ->hasGenerated ($ config )),
6363 $ this ->volumeResolver ->getMountVolumes ($ config ->hasTmpMounts ()),
6464 $ this ->volumeResolver ->getComposerVolumes ()
@@ -75,7 +75,7 @@ public function getRw(Config $config): array
7575 public function getBuild (Config $ config ): array
7676 {
7777 return $ this ->volumeResolver ->normalize (array_merge (
78- $ this ->volumeResolver ->getRootVolume (false ),
78+ $ this ->volumeResolver ->getRootVolume ($ config , false ),
7979 $ this ->volumeResolver ->getDefaultMagentoVolumes (false , $ this ->hasGenerated ($ config )),
8080 $ this ->volumeResolver ->getComposerVolumes ()
8181 ));
0 commit comments