Skip to content

Commit f0794ce

Browse files
committed
why the fuck am I still supporting PHP 7.3 anyway?
1 parent 5b7ba33 commit f0794ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/SearchTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ public function test_paginate()
314314
$this->assertEquals(2, $paginator->currentPage());
315315
$this->assertEquals(
316316
$ids->skip(2)->take(2)->values()->all(),
317-
array_map(fn($item) => $item->id, $paginator->items())
317+
array_map(function ($item) { return $item->id; }, $paginator->items())
318318
);
319319
}
320320
}

0 commit comments

Comments
 (0)