Skip to content

Commit

Permalink
Str::studly()
Browse files Browse the repository at this point in the history
  • Loading branch information
UnderlineWords authored Sep 17, 2019
1 parent 7bb58d5 commit 716f6ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/Generators/MakeModuleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected function stepOne()
$this->container['slug'] = $this->ask('Please enter the slug for the module:', $this->container['slug']);
$this->container['version'] = $this->ask('Please enter the module version:', $this->container['version']);
$this->container['description'] = $this->ask('Please enter the description of the module:', $this->container['description']);
$this->container['basename'] = studly_case($this->container['slug']);
$this->container['basename'] = Str::studly($this->container['slug']);
$this->container['namespace'] = config("modules.locations.{$this->container['location']}.namespace") . $this->container['basename'];

$this->comment('You have provided the following manifest information:');
Expand Down

0 comments on commit 716f6ca

Please sign in to comment.