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 3dd0473 commit a51d1b4Copy full SHA for a51d1b4
.gitignore
@@ -5,4 +5,5 @@ composer.lock
5
.DS_Store
6
Thumbs.db
7
/phpunit.xml
8
-/build
+/build
9
+*.cache
composer.json
@@ -16,7 +16,7 @@
16
},
17
"require-dev": {
18
"mockery/mockery": "~1.0",
19
- "phpunit/phpunit": "~7.5"
+ "phpunit/phpunit": "~7.5|~8.5"
20
21
"autoload": {
22
"psr-4": {
tests/AbstactTestCase.php
@@ -7,7 +7,7 @@
abstract class AbstractTestCase extends TestCase
{
10
- protected function tearDown()
+ protected function tearDown(): void
11
12
Mockery::close();
13
0 commit comments