Skip to content

Commit

Permalink
PHPUnit 8
Browse files Browse the repository at this point in the history
  • Loading branch information
othillo committed Mar 6, 2020
1 parent 1f7f8ee commit 92dca7f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"alcaeus/mongo-php-adapter": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phpunit/phpunit": "^8.0",
"ramsey/uuid": "^3.3",
"broadway/coding-standard": "^1.0"
},
Expand Down
1 change: 0 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<testsuites>
Expand Down
2 changes: 1 addition & 1 deletion test/MongoDBRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected function createRepository()
return new MongoDBRepository($coll);
}

public function tearDown()
public function tearDown(): void
{
$collections = $this->connection->selectDatabase(self::$dbName)->listCollections();
foreach ($collections as $collection) {
Expand Down

0 comments on commit 92dca7f

Please sign in to comment.