From c237cd8c7200d510b2961173d0f3dcb96de51b35 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 27 Apr 2023 17:20:36 +0900 Subject: [PATCH] fix: add missing 'make:cell' --- app/Config/Generators.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Config/Generators.php b/app/Config/Generators.php index 01b1ef2b2864..c766d321648b 100644 --- a/app/Config/Generators.php +++ b/app/Config/Generators.php @@ -26,6 +26,7 @@ class Generators extends BaseConfig * @var array */ public array $views = [ + 'make:cell' => 'CodeIgniter\Commands\Generators\Views\cell.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',