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 a473a6b commit 96fea6aCopy full SHA for 96fea6a
src/Console/ThemeGeneratorCommand.php
@@ -146,7 +146,7 @@ public function consoleAsk()
146
$this->theme['description'] = !$this->theme['description'] ? '' : title_case($this->theme['description']);
147
148
$this->theme['author'] = $this->ask('What is theme author name?', false);
149
- $this->theme['author'] = !$this->theme['author'] ? 'Shipu Ahamed' : title_case($this->theme['author']);
+ $this->theme['author'] = !$this->theme['author'] ? '' : title_case($this->theme['author']);
150
151
$this->theme['version'] = $this->ask('What is theme version?', false);
152
$this->theme['version'] = !$this->theme['version'] ? '1.0.0' : $this->theme['version'];
0 commit comments