Fix typo in ModelsCommand.php . Fixes #141

This commit is contained in:
Philip Keighley
2014-12-17 10:28:07 -05:00
parent f446326967
commit 231e125821
+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();