From bc569b76020442fbc4a9fdcdf15872644c989670 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C5=A0kr=C3=A1=C5=A1ek?= Date: Fri, 19 Mar 2021 08:13:06 +0100 Subject: [PATCH] tests: fix missing return type --- tests/cases/integration/Collection/collection.embeddables.phpt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cases/integration/Collection/collection.embeddables.phpt b/tests/cases/integration/Collection/collection.embeddables.phpt index 4af110d6..e53d8797 100644 --- a/tests/cases/integration/Collection/collection.embeddables.phpt +++ b/tests/cases/integration/Collection/collection.embeddables.phpt @@ -39,7 +39,7 @@ class CollectionEmbeddablesTest extends DataTestCase } - public function testOrderBy() + public function testOrderBy(): void { $books = $this->orm->books->findAll()->orderBy('price->cents'); $bookIds = $books->fetchPairs(null, 'id');