Skip to content

Commit

Permalink
Merge pull request sleeping-owl#121 from acacha/patch-1
Browse files Browse the repository at this point in the history
Mispelled commands variable
  • Loading branch information
sleeping-owl committed Jun 13, 2015
2 parents c277eda + c3f2034 commit a6d7002
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/SleepingOwl/Admin/AdminServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class AdminServiceProvider extends ServiceProvider
/**
* @var array
*/
protected $commads = [
protected $commands = [
'AdministratorsCommand',
'InstallCommand',
'ModelCommand'
Expand Down Expand Up @@ -109,7 +109,7 @@ protected function registerValidateExceptionHandler()
*/
protected function registerCommands()
{
foreach ($this->commads as $command)
foreach ($this->commands as $command)
{
$this->commands('SleepingOwl\Admin\Commands\\' . $command);
}
Expand All @@ -128,4 +128,4 @@ public function provides()
return ['admin'];
}

}
}

0 comments on commit a6d7002

Please sign in to comment.