Skip to content

Commit 96fea6a

Browse files
authored
remove default author name
1 parent a473a6b commit 96fea6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Console/ThemeGeneratorCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ public function consoleAsk()
146146
$this->theme['description'] = !$this->theme['description'] ? '' : title_case($this->theme['description']);
147147

148148
$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']);
149+
$this->theme['author'] = !$this->theme['author'] ? '' : title_case($this->theme['author']);
150150

151151
$this->theme['version'] = $this->ask('What is theme version?', false);
152152
$this->theme['version'] = !$this->theme['version'] ? '1.0.0' : $this->theme['version'];

0 commit comments

Comments
 (0)