From 3bb8c2a15d8349db3e3767cfce4827464ca380f3 Mon Sep 17 00:00:00 2001 From: Tony NGUEREZA Date: Thu, 23 Nov 2023 02:16:34 +0100 Subject: [PATCH] Minor change in make command class --- not_found_reader_filename | 1 + src/Console/MakeCommand.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 not_found_reader_filename diff --git a/not_found_reader_filename b/not_found_reader_filename new file mode 100644 index 0000000..44ffb05 --- /dev/null +++ b/not_found_reader_filename @@ -0,0 +1 @@ +foofoo \ No newline at end of file diff --git a/src/Console/MakeCommand.php b/src/Console/MakeCommand.php index c0f5024..5ed63de 100644 --- a/src/Console/MakeCommand.php +++ b/src/Console/MakeCommand.php @@ -86,7 +86,7 @@ public function __construct( Filesystem $filesystem ) { parent::__construct($application, $filesystem); - $this->addArgument('name', 'The full class name (can include root namespace', null, false); + $this->addArgument('name', 'The full class name (without the root namespace)', null, false); $this->addOption('-f|--force', 'Overwrite existing files.', false, false); }