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.
1 parent 7569a9e commit 21e7965Copy full SHA for 21e7965
system/Commands/Utilities/PhpIniCheck.php
@@ -80,7 +80,7 @@ public function run(array $params)
80
return EXIT_ERROR;
81
}
82
83
- $argument = isset($params[0]) && $params[0] ? $params[0] : null;
+ $argument = isset($params[0]) ? $params[0] : null;
84
85
CheckPhpIni::run(argument: $argument);
86
tests/system/Commands/Utilities/PhpIniCheckTest.php
@@ -37,7 +37,7 @@ protected function tearDown(): void
37
parent::tearDown();
38
39
40
- protected function getBuffer()
+ protected function getBuffer(): string
41
{
42
return $this->getStreamFilterBuffer();
43
0 commit comments