@@ -123,12 +123,16 @@ default value is ``true``.
123123$returnType
124124-----------
125125
126- The Model's CRUD methods will take a step of work away from you and automatically return
127- the resulting data, instead of the Result object. This setting allows you to define
128- the type of data that is returned. Valid values are '**array **' (the default), '**object **', or the **fully
129- qualified name of a class ** that can be used with the Result object's ``getCustomResultObject() ``
130- method. Using the special ``::class `` constant of the class will allow most IDEs to
131- auto-complete the name and allow functions like refactoring to better understand your code.
126+ The Model's **find*() ** methods will take a step of work away from you and automatically
127+ return the resulting data, instead of the Result object.
128+
129+ This setting allows you to define the type of data that is returned. Valid values
130+ are '**array **' (the default), '**object **', or the **fully qualified name of a class **
131+ that can be used with the Result object's ``getCustomResultObject() `` method.
132+
133+ Using the special ``::class `` constant of the class will allow most IDEs to
134+ auto-complete the name and allow functions like refactoring to better understand
135+ your code.
132136
133137.. _model-use-soft-deletes :
134138
@@ -145,7 +149,7 @@ This requires either a DATETIME or INTEGER field in the database as per the mode
145149`$dateFormat `_ setting. The default field name is ``deleted_at `` however this name can be
146150configured to any name of your choice by using `$deletedField `_ property.
147151
148- .. important :: The ``deleted_at`` field must be nullable.
152+ .. important :: The ``deleted_at`` field in the database must be nullable.
149153
150154$allowedFields
151155--------------
0 commit comments