From 0d64c45797f61caea5ff66efaec038a0a63b6e23 Mon Sep 17 00:00:00 2001 From: michalsn Date: Sat, 28 Mar 2026 11:21:24 +0100 Subject: [PATCH] docs: clarify Model::find() note for null argument --- user_guide_src/source/models/model.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user_guide_src/source/models/model.rst b/user_guide_src/source/models/model.rst index f1383b45f803..76feb2b7c7c1 100644 --- a/user_guide_src/source/models/model.rst +++ b/user_guide_src/source/models/model.rst @@ -492,8 +492,8 @@ of just one: .. literalinclude:: model/007.php -.. note:: If no parameters are passed in, ``find()`` will return all rows in that model's table, - effectively acting like ``findAll()``, though less explicit. +.. note:: If ``find()`` is called without parameters or with ``null``, it will return all rows in + that model's table, effectively acting like ``findAll()``, though less explicit. findColumn() ------------