Skip to content

Commit 9b0af3c

Browse files
committed
Update test compatibility with phpunit 7
1 parent 6d2d2f0 commit 9b0af3c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

phpunit.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
convertWarningsToExceptions="true"
99
processIsolation="false"
1010
stopOnFailure="false"
11-
syntaxCheck="false"
1211
verbose="true"
1312
>
1413
<testsuites>

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ class TestCase extends PHPUnitTestCase
99
{
1010
public static $functions;
1111

12-
public function setUp()
12+
public function setUp(): void
1313
{
1414
self::$functions = Mockery::mock();
1515
}
1616

17-
public function tearDown()
17+
public function tearDown(): void
1818
{
1919
Mockery::close();
2020
}

0 commit comments

Comments
 (0)