From dc969c1f4272710b3dfa2386e91267dc1039e4cd Mon Sep 17 00:00:00 2001 From: kenjis Date: Sat, 18 Dec 2021 10:54:29 +0900 Subject: [PATCH] docs: fix directory inconsistency --- user_guide_src/source/models/entities.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/user_guide_src/source/models/entities.rst b/user_guide_src/source/models/entities.rst index 489685a8c5ff..34928d628dbe 100644 --- a/user_guide_src/source/models/entities.rst +++ b/user_guide_src/source/models/entities.rst @@ -425,11 +425,11 @@ Custom casting You can define your own conversion types for getting and setting data. At first you need to create a handler class for your type. -Let's say the class will be located in the **app/Entity/Cast** directory:: +Let's say the class will be located in the **app/Entities/Cast** directory:: \App\Entity\Cast\CastBase64::class, + 'base64' => \App\Entities\Cast\CastBase64::class, ]; }