Skip to content

Commit

Permalink
[php] Fix 7.2 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
captn3m0 committed Jul 2, 2023
1 parent 794f82a commit 1420b6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
php-version: ${{matrix.php}}
tools: phpunit, composer
- run: composer install --no-interaction
- run: ./vendor/bin/phpunit --migrate-configuration
- run: ./vendor/bin/phpunit
ruby:
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion src/Validator.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public static function search(string $address){
}, $results);
}

return $results;
return array_values($results);
}
}

0 comments on commit 1420b6b

Please sign in to comment.