diff --git a/src/Illuminate/Foundation/Console/ConfigShowCommand.php b/src/Illuminate/Foundation/Console/ConfigShowCommand.php index 60b6b4e2e09d..6a3796e4743b 100644 --- a/src/Illuminate/Foundation/Console/ConfigShowCommand.php +++ b/src/Illuminate/Foundation/Console/ConfigShowCommand.php @@ -14,14 +14,14 @@ class ConfigShowCommand extends Command * * @var string */ - protected $signature = 'config:show {config : The configuration file to show}'; + protected $signature = 'config:show {config : The configuration file or key (using "dot" annotation) to show}'; /** * The console command description. * * @var string */ - protected $description = 'Display all of the values for a given configuration file'; + protected $description = 'Display all of the values for a given configuration file or key (using "dot" annotation)'; /** * Execute the console command. @@ -33,7 +33,7 @@ public function handle() $config = $this->argument('config'); if (! config()->has($config)) { - $this->components->error("Configuration file `{$config}` does not exist."); + $this->components->error("Configuration file or key {$config} does not exist."); return Command::FAILURE; }