From 64f251d850eca346fbbbcb1e5c4091cc6c980252 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 3 Dec 2023 05:44:43 +0900 Subject: [PATCH] config: by default, $limitZeroAsAll = true Co-authored-by: Michal Sniatala --- app/Config/Feature.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Config/Feature.php b/app/Config/Feature.php index 8c1b2715c8b1..93d7536fc758 100644 --- a/app/Config/Feature.php +++ b/app/Config/Feature.php @@ -25,5 +25,5 @@ class Feature extends BaseConfig * If true, `limit(0)` returns all records. (the behavior in 4.4 or before) * If false, `limit(0)` returns no records. */ - public bool $limitZeroAsAll = false; + public bool $limitZeroAsAll = true; }