Ver Fonte

Add --verbose flag to log output of failed response calls, etc

shalvah há 5 anos atrás
pai
commit
0adf6a1670
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      src/Commands/GenerateDocumentation.php

+ 1 - 1
src/Commands/GenerateDocumentation.php

@@ -26,7 +26,6 @@ class GenerateDocumentation extends Command
      */
     protected $signature = 'apidoc:generate
                             {--force : Force rewriting of existing routes}
-                            {--verbose : Show verbose output}
     ';
 
     /**
@@ -57,6 +56,7 @@ class GenerateDocumentation extends Command
     public function handle()
     {
         // Using a global static variable here, so fuck off if you don't like it
+        // Also, the --verbose option is included with all Artisan commands
         Flags::$shouldBeVerbose = $this->option('verbose');
 
         $this->docConfig = new DocumentationConfig(config('apidoc'));