Skip to content

Commit

Permalink
fix: unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
hschoenenberger committed Jan 26, 2024
1 parent ead0be5 commit a21a492
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"league/oauth2-client": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"phpunit/phpunit": "^8.0 || ^9.0",
"phpstan/phpstan": "^1.7",
"prestashop/php-dev-tools": "^4.2"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/LogoutTraitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LogoutTraitTest extends TestCase
/**
* @return void
*/
protected function setUp()
protected function setUp(): void
{
$this->provider = new PrestaShop([
'clientId' => 'test-client',
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/PrestaShopTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class PrestaShopTest extends TestCase
/**
* @return void
*/
protected function setUp()
protected function setUp(): void
{
$this->provider = new PrestaShop([
'clientId' => 'test-client',
Expand Down
2 changes: 1 addition & 1 deletion tests/src/Provider/PrestaShopUserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class PrestaShopUserTest extends TestCase
/**
* @return void
*/
protected function setUp()
protected function setUp(): void
{
$this->user = new PrestaShopUser([
'email' => '[email protected]',
Expand Down

0 comments on commit a21a492

Please sign in to comment.