Skip to content

Commit

Permalink
cope with php8 / phpunit 8
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidGoodwin committed Mar 19, 2022
1 parent 4fcbfbc commit c52f0db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"symfony/process": "~2.0|~3.0|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~7",
"phpunit/phpunit": "7.*|8.*",
"vimeo/psalm": "*",
"jakub-onderka/php-parallel-lint":"*",
"squizlabs/php_codesniffer" : "*",
Expand Down
2 changes: 1 addition & 1 deletion tests/Nmap/Tests/NmapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class NmapTest extends TestCase
{
public function tearDown()
public function tearDown(): void
{
m::close();
parent::tearDown();
Expand Down

0 comments on commit c52f0db

Please sign in to comment.