From 6f9b90c2040cc778689113507aee93fc1a589f14 Mon Sep 17 00:00:00 2001 From: Andrew Ellis Date: Thu, 25 Aug 2016 18:53:51 -0600 Subject: [PATCH] hotfix for type overrides Oops, looks like I forgot to commit one call to the new method. This is related to #377. --- 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 1cb817f..db08de5 100644 --- a/src/Console/ModelsCommand.php +++ b/src/Console/ModelsCommand.php @@ -488,7 +488,7 @@ class ModelsCommand extends Command $this->properties[$name]['comment'] = (string) $comment; } if ($type !== null) { - $this->properties[$name]['type'] = $type; + $this->properties[$name]['type'] = $this->getTypeOverride($type); } if ($read !== null) { $this->properties[$name]['read'] = $read;