Skip to content

Commit

Permalink
Update PHPUnit to v9
Browse files Browse the repository at this point in the history
  • Loading branch information
boekkooi-lengoo committed Jun 28, 2022
1 parent 733be54 commit ae0ceb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"illuminate/pagination": ">=5.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
"phpunit/phpunit": "~9.0"
},
"autoload": {
"psr-4": {
Expand Down
4 changes: 2 additions & 2 deletions tests/InitialTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
class InitialTest extends TestCase {
protected $cm;

public function setUp() {
public function setUp(): void {
$this->cm = new ClientManager();
}

public function testConfigDefaultAccount() {
$this->assertEquals("default", ClientManager::get("default"));
}
}
}

0 comments on commit ae0ceb4

Please sign in to comment.