From 26e55e864469587342b2d4e3420dec6bc27706a1 Mon Sep 17 00:00:00 2001 From: Thilina Hasantha Date: Mon, 4 Feb 2019 06:20:05 +0100 Subject: [PATCH] Fix php 5.6 compatibility --- core/src/Classes/Data/Query/DataQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/Classes/Data/Query/DataQuery.php b/core/src/Classes/Data/Query/DataQuery.php index 11239b09..b35e9581 100644 --- a/core/src/Classes/Data/Query/DataQuery.php +++ b/core/src/Classes/Data/Query/DataQuery.php @@ -175,7 +175,7 @@ class DataQuery /** * @return bool */ - public function isLengthSet(): bool + public function isLengthSet() { return $this->isLengthSet; }