From 231e125821813e3e866337cb5b0ea83b01a25019 Mon Sep 17 00:00:00 2001 From: Philip Keighley Date: Wed, 17 Dec 2014 10:28:07 -0500 Subject: [PATCH] Fix typo in ModelsCommand.php . Fixes #141 --- src/Console/ModelsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();