From 16842062bddbf236b541c6accc789d3dd378b82b Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 26 Feb 2024 17:23:23 +0900 Subject: [PATCH] docs: break long lines --- user_guide_src/source/models/model.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/user_guide_src/source/models/model.rst b/user_guide_src/source/models/model.rst index 91d39cd6a4fe..de188fa74f67 100644 --- a/user_guide_src/source/models/model.rst +++ b/user_guide_src/source/models/model.rst @@ -123,16 +123,16 @@ default value is ``true``. $returnType ----------- -The Model's CRUD methods will take a step of work away from you and automatically return -the resulting data, instead of the Result object. +The Model's CRUD methods will take a step of work away from you and automatically +return the resulting data, instead of the Result object. -This setting allows you to define -the type of data that is returned. Valid values are '**array**' (the default), '**object**', or the **fully -qualified name of a class** that can be used with the Result object's ``getCustomResultObject()`` -method. +This setting allows you to define the type of data that is returned. Valid values +are '**array**' (the default), '**object**', or the **fully qualified name of a class** +that can be used with the Result object's ``getCustomResultObject()`` method. Using the special ``::class`` constant of the class will allow most IDEs to -auto-complete the name and allow functions like refactoring to better understand your code. +auto-complete the name and allow functions like refactoring to better understand +your code. .. _model-use-soft-deletes: