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 f40cf5b commit d61a9f7Copy full SHA for d61a9f7
src/Util/PHP/WindowsPhpProcess.php
@@ -20,7 +20,11 @@ final class WindowsPhpProcess extends DefaultPhpProcess
20
{
21
public function getCommand(array $settings, string $file = null): string
22
23
- return '"' . parent::getCommand($settings, $file) . '"';
+ if (PHP_MAJOR_VERSION < 8) {
24
+ return '"' . parent::getCommand($settings, $file) . '"';
25
+ }
26
+
27
+ return parent::getCommand($settings, $file);
28
}
29
30
/**
0 commit comments