We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec2515d commit a0384e2Copy full SHA for a0384e2
Capsule/Artisan.php
@@ -162,8 +162,10 @@ public function run(array $argv): int
162
*/
163
private function renderList(): void
164
{
165
- $this->cli_name = "{$this->cli_name}\n" ?: "Tamedevelopers Support CLI\n";
166
-
+ $this->cli_name = !empty($this->cli_name)
+ ? "{$this->cli_name}\n"
167
+ : "Tamedevelopers Support CLI\n";
168
+
169
Logger::helpHeader($this->cli_name);
170
Logger::writeln('<yellow>Usage:</yellow>');
171
Logger::writeln(' php tame <command> [:option] [arguments]');
0 commit comments