You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Core/core/Console/Commands/Help.php
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -57,6 +57,7 @@ public static function showHelp(): void
57
57
$output .= ConsoleColor::light_purple(" create:package") . ConsoleColor::cyan(" Create a package by specifying which sub-directories to use e.g --mvc, --c, --m, --s") . "\n";
58
58
$output .= ConsoleColor::light_purple(" create:controller") . ConsoleColor::cyan(" Create a controller by specifying which module it belongs with") . "\n";
59
59
$output .= ConsoleColor::light_purple(" create:model") . ConsoleColor::cyan(" Create a model by specifying which module it belongs with") . "\n";
60
+
$output .= ConsoleColor::light_purple(" create:view") . ConsoleColor::cyan(" Create a view by specifying which path and file name to give or a module it belongs with.") . "\n";
60
61
$output .= ConsoleColor::light_purple(" create:service") . ConsoleColor::cyan(" Create a service by specifying which module it belongs with") . "\n";
61
62
$output .= ConsoleColor::light_purple(" create:action") . ConsoleColor::cyan(" Create an action by specifying which module it belongs with") . "\n";
62
63
$output .= ConsoleColor::light_purple(" create:library") . ConsoleColor::cyan(" Create a library by specifying which module it belongs with") . "\n";
@@ -492,6 +493,29 @@ private static function create_model()
0 commit comments