From ff41b49538516dd80e4f1649e93a9ea2ea94bae3 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Fri, 30 Dec 2022 17:58:40 +0200 Subject: [PATCH] fix notice --- application/Espo/Core/Select/SelectManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/Espo/Core/Select/SelectManager.php b/application/Espo/Core/Select/SelectManager.php index 250b31823c..c2372e4fd8 100644 --- a/application/Espo/Core/Select/SelectManager.php +++ b/application/Espo/Core/Select/SelectManager.php @@ -189,7 +189,7 @@ class SelectManager return $this->entityType; } - protected function limit(?int $offset = null, ?int $maxSize = null, array &$result) + protected function limit(?int $offset, ?int $maxSize, array &$result) { if (!is_null($offset)) { $result['offset'] = $offset;