Merge pull request #272 from kbanman/clicommandfix

Fix typo in Cli\Command
This commit is contained in:
Taylor Otwell 2012-01-26 06:36:45 -08:00
commit 96c43d6d87
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ protected static function format($bundle, $task)
{
$prefix = Bundle::class_prefix($bundle);
return '\\'.$prefix.Str::clasify($task).'_Task';
return '\\'.$prefix.Str::classify($task).'_Task';
}
}