Skip to content

Commit 7cbada1

Browse files
committed
minor #1059 Make tests compatible with PHPUnit 8 (voronkovich)
This PR was merged into the master branch. Discussion ---------- Make tests compatible with PHPUnit 8 `setUp()` method must have a `void` return type declaration. See: https://phpunit.de/announcements/phpunit-8.html Commits ------- dae754d Make tests compatible with PHPUnit 8
2 parents bd9dc6e + dae754d commit 7cbada1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Command/AddUserCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AddUserCommandTest extends KernelTestCase
2626
'full-name' => 'Chuck Norris',
2727
];
2828

29-
protected function setUp()
29+
protected function setUp(): void
3030
{
3131
exec('stty 2>&1', $output, $exitcode);
3232
$isSttySupported = 0 === $exitcode;

0 commit comments

Comments
 (0)