Skip to content

Commit

Permalink
Updated test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
nick committed Dec 5, 2024
1 parent ab5986f commit b08cfd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
php-version: ['7.4', '8.0', '8.1', '8.2']
php-version: ['7.4', '8.0', '8.1', '8.2', '8.3']
phpunit-version: ['latest']
transport: ['', 'PhpHttp']

Expand Down
2 changes: 1 addition & 1 deletion src/Manticoresearch/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function getDocumentByIds($ids) {
// Deduplicate and order the list
static::checkIfList($ids);

array_walk($ids, [static::class, 'checkDocumentId']);
array_walk($ids, 'static::checkDocumentId');
$params = [
'body' => [
'index' => $this->index,
Expand Down

0 comments on commit b08cfd0

Please sign in to comment.