Skip to content

Commit 416331c

Browse files
committed
MAGETWO-44547: [php7] "PHP Settings Check" fail in Web Setup Wizard blocks installation via web
- removed unnecessary new line
1 parent 86b640d commit 416331c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

setup/src/Magento/Setup/Model/PhpReadinessCheck.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,7 @@ private function checkPopulateRawPostSetting()
198198
$checkVersionConstraint = $this->versionParser->parseConstraints('~5.6.0');
199199
$normalizedPhpVersion = $this->normalizePhpVersion(PHP_VERSION);
200200
$currentVersion = $this->versionParser->parseConstraints($normalizedPhpVersion);
201-
if ($checkVersionConstraint->matches($currentVersion)
202-
&& $iniSetting !== -1
203-
) {
201+
if ($checkVersionConstraint->matches($currentVersion) && $iniSetting !== -1) {
204202
$error = true;
205203
}
206204

0 commit comments

Comments
 (0)