From dae754db0b0cd953154a7451e4a4300aba5d8d5c Mon Sep 17 00:00:00 2001 From: Oleg Voronkovich Date: Sun, 22 Dec 2019 20:43:21 +0300 Subject: [PATCH] Make tests compatible with PHPUnit 8 --- tests/Command/AddUserCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Command/AddUserCommandTest.php b/tests/Command/AddUserCommandTest.php index a6eb73b23..5eae8625a 100644 --- a/tests/Command/AddUserCommandTest.php +++ b/tests/Command/AddUserCommandTest.php @@ -26,7 +26,7 @@ class AddUserCommandTest extends KernelTestCase 'full-name' => 'Chuck Norris', ]; - protected function setUp() + protected function setUp(): void { exec('stty 2>&1', $output, $exitcode); $isSttySupported = 0 === $exitcode;