Skip to content

Commit

Permalink
Merge pull request #330 from norozap/laravel-5.4
Browse files Browse the repository at this point in the history
More updates to laravel 5.4
  • Loading branch information
AlirezaAlgo authored Feb 8, 2017
2 parents 4a63846 + 59d2571 commit 5411337
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protected function getDefaultNamespace($rootNamespace)
*/
public function fire()
{
$name = $this->parseName($this->getNameInput()) . 'Controller';
$name = $this->qualifyClass($this->getNameInput()) . 'Controller';

if ($this->files->exists($path = $this->getPath($name)))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ protected function getDefaultNamespace($rootNamespace)
*/
public function fire()
{
$name = $this->parseName($this->getNameInput());
$name = $this->qualifyClass($this->getNameInput());

if ($this->files->exists($path = $this->getPath($name . 'Observer')))
{
Expand Down

0 comments on commit 5411337

Please sign in to comment.