From 2c7169e253cadc9c74e3a24073b2034306c2aa18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dejan=20Marki=C4=8D?= Date: Tue, 23 Apr 2024 21:39:39 +0200 Subject: [PATCH] add return value --- tests/ResultTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ResultTest.php b/tests/ResultTest.php index a6a79a4..80321b1 100644 --- a/tests/ResultTest.php +++ b/tests/ResultTest.php @@ -14,7 +14,7 @@ public function testCountable(): void $this->assertSame(0, count($result)); } - public function testIterator() + public function testIterator(): void { $result = new Result([['column' => 'value']]); $this->assertSame(1, count($result));