Skip to content

Commit ec2515d

Browse files
update
1 parent db60c57 commit ec2515d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Capsule/Artisan.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Artisan
2727
* Command registry
2828
* @var string
2929
*/
30-
public $cliname;
30+
public $cli_name;
3131

3232
/**
3333
* Registered commands map
@@ -44,7 +44,7 @@ public function __construct()
4444
{
4545
// Ensure environment variables are loaded before accessing them
4646
Manager::startEnvIFNotStarted();
47-
47+
4848
// Auto-discover external commands from installed packages
4949
$this->discoverExternal();
5050
}
@@ -162,9 +162,9 @@ public function run(array $argv): int
162162
*/
163163
private function renderList(): void
164164
{
165-
$this->cliname = "{$this->cliname}\n" ?: "Tamedevelopers Support CLI\n";
165+
$this->cli_name = "{$this->cli_name}\n" ?: "Tamedevelopers Support CLI\n";
166166

167-
Logger::helpHeader($this->cliname);
167+
Logger::helpHeader($this->cli_name);
168168
Logger::writeln('<yellow>Usage:</yellow>');
169169
Logger::writeln(' php tame <command> [:option] [arguments]');
170170
Logger::writeln('');

0 commit comments

Comments
 (0)