From 0846b5fcaf75e86608aeab62882db2ad44923fe9 Mon Sep 17 00:00:00 2001 From: Sevan Nerse Date: Wed, 3 Mar 2021 22:34:50 +0300 Subject: [PATCH 1/2] updated module config --- config/module.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config/module.php b/config/module.php index ba4a9338a..fcc6b7514 100644 --- a/config/module.php +++ b/config/module.php @@ -123,6 +123,7 @@ return [ 'notification' => ['path' => 'Notifications', 'generate' => false], 'route' => ['path' => 'Routes', 'generate' => true], 'component' => ['path' => 'View/Components', 'generate' => false], + 'cast' => ['path' => 'Casts', 'generate' => true], ], ], From afcf03917e66c0f4c11ffc03f35ca317baf73f25 Mon Sep 17 00:00:00 2001 From: Sevan Nerse Date: Wed, 3 Mar 2021 22:55:07 +0300 Subject: [PATCH 2/2] casts would not be generated --- config/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/module.php b/config/module.php index fcc6b7514..f6f5ee6de 100644 --- a/config/module.php +++ b/config/module.php @@ -123,7 +123,7 @@ return [ 'notification' => ['path' => 'Notifications', 'generate' => false], 'route' => ['path' => 'Routes', 'generate' => true], 'component' => ['path' => 'View/Components', 'generate' => false], - 'cast' => ['path' => 'Casts', 'generate' => true], + 'cast' => ['path' => 'Casts', 'generate' => false], ], ],