Merge pull request #142 from RowdyElectron/master

Fix typo in ModelsCommand.php . Fixes #141
This commit is contained in:
Barry vd. Heuvel
2014-12-17 16:30:50 +01:00
+1 -1
View File
@@ -165,7 +165,7 @@ class ModelsCommand extends Command
$this->comment("Loading model '$name'");
if (!$reflectionClass->IsInstantiable()) {
throw new \Exception($name . ' is not instanciable.');
throw new \Exception($name . ' is not instantiable.');
}
$model = new $name();