From da394c22f8c229c5af57e4ef5aadfaad72b59c66 Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 21 May 2023 13:41:09 +0000 Subject: [PATCH] Release v4.3.5 --- app/Config/App.php | 2 ++ app/Config/Generators.php | 1 + 2 files changed, 3 insertions(+) diff --git a/app/Config/App.php b/app/Config/App.php index be7c40cd..67eaf7da 100644 --- a/app/Config/App.php +++ b/app/Config/App.php @@ -94,6 +94,8 @@ class App extends BaseConfig * by the application in descending order of priority. If no match is * found, the first locale will be used. * + * IncomingRequest::setLocale() also uses this list. + * * @var string[] */ public array $supportedLocales = ['en']; diff --git a/app/Config/Generators.php b/app/Config/Generators.php index c766d321..6566a31e 100644 --- a/app/Config/Generators.php +++ b/app/Config/Generators.php @@ -27,6 +27,7 @@ class Generators extends BaseConfig */ public array $views = [ 'make:cell' => 'CodeIgniter\Commands\Generators\Views\cell.tpl.php', + 'make:cell_view' => 'CodeIgniter\Commands\Generators\Views\cell_view.tpl.php', 'make:command' => 'CodeIgniter\Commands\Generators\Views\command.tpl.php', 'make:config' => 'CodeIgniter\Commands\Generators\Views\config.tpl.php', 'make:controller' => 'CodeIgniter\Commands\Generators\Views\controller.tpl.php',