diff --git a/src/Console/ModelsCommand.php b/src/Console/ModelsCommand.php index 5ec6fdb..62c081c 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -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();