File tree 4 files changed +7
-2
lines changed
4 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ public function getValues(): array
45
45
}
46
46
47
47
$ values = $ this ->defaultInstallConfig ->getValues ();
48
- $ values = array_merge ($ values , include ($ installConfig ));
48
+ // phpcs:ignore
49
+ $ values = array_merge ($ values , require ($ installConfig ));
49
50
return $ values ;
50
51
}
51
52
Original file line number Diff line number Diff line change @@ -179,6 +179,7 @@ public function disableGraphQl(): DisableModules
179
179
*/
180
180
public function getModulesFromConfig (): array
181
181
{
182
+ // phpcs:ignore
182
183
$ config = require ($ this ->applicationRoot . '/app/etc/config.php ' );
183
184
return $ config ['modules ' ];
184
185
}
Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ public function __construct(
46
46
public function getConfigValues (): array
47
47
{
48
48
if (empty ($ this ->configValues )) {
49
+ // phpcs:ignore
49
50
$ output = exec ('php ' .__DIR__ .'/InstallConfigExec.php ' .$ this ->directoryList ->getRoot ());
50
51
$ this ->configValues = json_decode ($ output , true );
51
52
}
@@ -83,4 +84,4 @@ private function getFilePath(): string
83
84
84
85
throw new FileNotFound (__ (sprintf ('%s not found ' , $ file )));
85
86
}
86
- }
87
+ }
Original file line number Diff line number Diff line change 1
1
<?php declare (strict_types=1 );
2
+ // phpcs:ignoreFile
2
3
3
4
$ magentoRoot = $ argv [1 ];
5
+
4
6
require_once $ magentoRoot . '/dev/tests/integration/framework/autoload.php ' ;
5
7
6
8
$ file = $ magentoRoot . '/dev/tests/integration/etc/install-config-mysql.php ' ;
You can’t perform that action at this time.
0 commit comments