Skip to content

Commit 81b03b7

Browse files
committed
fix issue in create helper command
1 parent 0b767b7 commit 81b03b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/Commands/Helper/CreateHelperCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ public function handle()
6767

6868
private function getHelperName() :string
6969
{
70-
return Str::lower($this->argument('name'));
70+
return $this->argument('name');
7171
}
7272

7373
private function getHelperFolder() :string
7474
{
75-
return Str::lower($this->option('folder'));
75+
return $this->option('folder');
7676
}
7777

7878
private function loadHelper()

0 commit comments

Comments
 (0)