From 44104167f6e640bc052f1e01a89ea9b542eb1d71 Mon Sep 17 00:00:00 2001 From: Igor Pinchuk Date: Fri, 5 Dec 2025 05:45:01 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/OffsetAdapterTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/OffsetAdapterTest.php b/tests/OffsetAdapterTest.php index f99c845..842d5ea 100644 --- a/tests/OffsetAdapterTest.php +++ b/tests/OffsetAdapterTest.php @@ -87,6 +87,7 @@ public function testLoopTerminatesAfterRequestedLimit(): void $counter = 0; $callback = function (int $page, int $size) use (&$counter) { $counter++; + return new ArraySourceResult(range(1, $size)); };