Skip to content

Commit 47c0c12

Browse files
committed
Fix phpstan tests for PHP 7.2+
1 parent 6327984 commit 47c0c12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: tests/AbstractTestCase.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ abstract class AbstractTestCase extends PHPUnitTestCase
1313
*
1414
* @return void
1515
*/
16-
protected function setUp()
16+
protected function setUp(): void
1717
{
1818
parent::setUp();
1919

@@ -25,7 +25,7 @@ protected function setUp()
2525
*
2626
* @return void
2727
*/
28-
protected function tearDown()
28+
protected function tearDown(): void
2929
{
3030
parent::tearDown();
3131

0 commit comments

Comments
 (0)