Skip to content

Commit 927fb74

Browse files
committed
Ignore PHPCS warnings
1 parent 53ad6ca commit 927fb74

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

Utilities/CurrentInstallConfig.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ public function getValues(): array
4545
}
4646

4747
$values = $this->defaultInstallConfig->getValues();
48-
$values = array_merge($values, include($installConfig));
48+
// phpcs:ignore
49+
$values = array_merge($values, require($installConfig));
4950
return $values;
5051
}
5152

Utilities/DisableModules.php

+1
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ public function disableGraphQl(): DisableModules
179179
*/
180180
public function getModulesFromConfig(): array
181181
{
182+
// phpcs:ignore
182183
$config = require($this->applicationRoot . '/app/etc/config.php');
183184
return $config['modules'];
184185
}

Utilities/IntegrationTesting/InstallConfig.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public function __construct(
4646
public function getConfigValues(): array
4747
{
4848
if (empty($this->configValues)) {
49+
// phpcs:ignore
4950
$output = exec('php '.__DIR__.'/InstallConfigExec.php '.$this->directoryList->getRoot());
5051
$this->configValues = json_decode($output, true);
5152
}
@@ -83,4 +84,4 @@ private function getFilePath(): string
8384

8485
throw new FileNotFound(__(sprintf('%s not found', $file)));
8586
}
86-
}
87+
}

Utilities/IntegrationTesting/InstallConfigExec.php

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?php declare(strict_types=1);
2+
// phpcs:ignoreFile
23

34
$magentoRoot = $argv[1];
5+
46
require_once $magentoRoot . '/dev/tests/integration/framework/autoload.php';
57

68
$file = $magentoRoot . '/dev/tests/integration/etc/install-config-mysql.php';

0 commit comments

Comments
 (0)