From 01690b78c25128bbd4222a0733e38bc0cd4e54a5 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Mon, 30 Nov 2020 16:50:02 +0100 Subject: [PATCH] Fix CS/WS issues --- src/Util/PHP/WindowsPhpProcess.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/PHP/WindowsPhpProcess.php b/src/Util/PHP/WindowsPhpProcess.php index 509670bca18..bd19df2b8b0 100644 --- a/src/Util/PHP/WindowsPhpProcess.php +++ b/src/Util/PHP/WindowsPhpProcess.php @@ -20,7 +20,7 @@ final class WindowsPhpProcess extends DefaultPhpProcess { public function getCommand(array $settings, string $file = null): string { - if (PHP_MAJOR_VERSION < 8) { + if (\PHP_MAJOR_VERSION < 8) { return '"' . parent::getCommand($settings, $file) . '"'; }