From 7de126005ec4e678764ea4f368605fdae9bd7617 Mon Sep 17 00:00:00 2001 From: kenjis Date: Wed, 1 Nov 2023 09:18:48 +0900 Subject: [PATCH] fix: make:cell help message --- system/Commands/Generators/CellGenerator.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/Commands/Generators/CellGenerator.php b/system/Commands/Generators/CellGenerator.php index cf4757d10eeb..358bacc0c434 100644 --- a/system/Commands/Generators/CellGenerator.php +++ b/system/Commands/Generators/CellGenerator.php @@ -40,7 +40,7 @@ class CellGenerator extends BaseCommand * * @var string */ - protected $description = 'Generates a new Cell file and its view.'; + protected $description = 'Generates a new Controlled Cell file and its view.'; /** * The Command's Usage @@ -55,7 +55,7 @@ class CellGenerator extends BaseCommand * @var array */ protected $arguments = [ - 'name' => 'The cell class name.', + 'name' => 'The Controlled Cell class name.', ]; /**