Skip to content

Commit

Permalink
ci(psalm): fix invalid return type
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent4vx committed Mar 14, 2023
1 parent e3c9ae6 commit da13050
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/Matcher/ModelMatcher.php
Expand Up @@ -73,6 +73,9 @@ public function getMatches(array $tokens, array $info = []): array

/**
* {@inheritdoc}
*
* @psalm-suppress ImplementedReturnTypeMismatch
* @return bool
*/
public function hasMatched(array $tokens): bool
{
Expand Down
3 changes: 3 additions & 0 deletions src/Matcher/QueryColumnMatcher.php
Expand Up @@ -75,6 +75,9 @@ public function getMatches(array $tokens, array $info = []): array

/**
* {@inheritdoc}
*
* @psalm-suppress ImplementedReturnTypeMismatch
* @return bool
*/
public function hasMatched(array $tokens): bool
{
Expand Down
3 changes: 3 additions & 0 deletions src/Matcher/QueryMatcher.php
Expand Up @@ -90,6 +90,9 @@ public function getMatches(array $tokens, array $info = []): array

/**
* {@inheritdoc}
*
* @psalm-suppress ImplementedReturnTypeMismatch
* @return bool
*/
public function hasMatched(array $tokens): bool
{
Expand Down

0 comments on commit da13050

Please sign in to comment.