Skip to content

Commit

Permalink
Up deps and add more accurate return types for data providers
Browse files Browse the repository at this point in the history
  • Loading branch information
loevgaard committed Feb 21, 2023
1 parent a4bec42 commit 869562a
Show file tree
Hide file tree
Showing 3 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 @@ -12,7 +12,7 @@
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.17",
"psalm/plugin-phpunit": "^0.18",
"setono/code-quality-pack": "^2.4"
},
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion tests/DenyAllConsentCheckerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function it_denies_all(string $consent): void
}

/**
* @return list<list<string>>
* @return list<array{0: string}>
*/
public function getAllConsents(): array
{
Expand Down
2 changes: 1 addition & 1 deletion tests/GrantAllConsentCheckerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function it_denies_all(string $consent): void
}

/**
* @return list<list<string>>
* @return list<array{0: string}>
*/
public function getAllConsents(): array
{
Expand Down

0 comments on commit 869562a

Please sign in to comment.