We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2d2f0 commit 9b0af3cCopy full SHA for 9b0af3c
phpunit.xml
@@ -8,7 +8,6 @@
8
convertWarningsToExceptions="true"
9
processIsolation="false"
10
stopOnFailure="false"
11
- syntaxCheck="false"
12
verbose="true"
13
>
14
<testsuites>
tests/TestCase.php
@@ -9,12 +9,12 @@ class TestCase extends PHPUnitTestCase
{
public static $functions;
- public function setUp()
+ public function setUp(): void
self::$functions = Mockery::mock();
15
}
16
17
- public function tearDown()
+ public function tearDown(): void
18
19
Mockery::close();
20
0 commit comments