Skip to content

Commit 72eb366

Browse files
committed
Use a fully-qualified PHP_OS_FAMILY constant
1 parent 9998987 commit 72eb366

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Command/AddUserCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function setUp()
3333
exec('stty 2>&1', $output, $exitcode);
3434
$isSttySupported = 0 === $exitcode;
3535

36-
if ('Windows' === PHP_OS_FAMILY || !$isSttySupported) {
36+
if ('Windows' === \PHP_OS_FAMILY || !$isSttySupported) {
3737
$this->markTestSkipped('`stty` is required to test this command.');
3838
}
3939
}

0 commit comments

Comments
 (0)