From a0044c430adefd4715e4804514ec209af7671e93 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 10 Sep 2024 01:57:59 +0200 Subject: [PATCH] QA/CS: minor tweaks --- Tests/IOTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/IOTestCase.php b/Tests/IOTestCase.php index d7ccb71..6cd2301 100644 --- a/Tests/IOTestCase.php +++ b/Tests/IOTestCase.php @@ -53,7 +53,7 @@ protected function executeCliCommand($command, $workingDir = null) ]; $options = null; - if (stripos(PHP_OS, 'WIN') === 0) { + if (\stripos(\PHP_OS, 'WIN') === 0) { $options = ['bypass_shell' => true]; }