Skip to content

Commit

Permalink
docs: update description for $limitZeroAsAll
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Dec 3, 2023
1 parent 64f251d commit 2f9a36c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Config/Feature.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ class Feature extends BaseConfig
public bool $oldFilterOrder = false;

/**
* Keep the behavior of `limit(0)` in Query Builder in 4.4 or before.
* The behavior of `limit(0)` in Query Builder.
*
* If true, `limit(0)` returns all records. (the behavior in 4.4 or before)
* If false, `limit(0)` returns no records.
* If true, `limit(0)` returns all records. (the behavior of 4.4.x or before in version 4.x.)
* If false, `limit(0)` returns no records. (the behavior of 3.1.9 or later in version 3.x.)
*/
public bool $limitZeroAsAll = true;
}

0 comments on commit 2f9a36c

Please sign in to comment.