mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-23 12:33:08 +00:00
hotfix for type overrides
Oops, looks like I forgot to commit one call to the new method. This is related to #377.
This commit is contained in:
@@ -488,7 +488,7 @@ class ModelsCommand extends Command
|
|||||||
$this->properties[$name]['comment'] = (string) $comment;
|
$this->properties[$name]['comment'] = (string) $comment;
|
||||||
}
|
}
|
||||||
if ($type !== null) {
|
if ($type !== null) {
|
||||||
$this->properties[$name]['type'] = $type;
|
$this->properties[$name]['type'] = $this->getTypeOverride($type);
|
||||||
}
|
}
|
||||||
if ($read !== null) {
|
if ($read !== null) {
|
||||||
$this->properties[$name]['read'] = $read;
|
$this->properties[$name]['read'] = $read;
|
||||||
|
|||||||
Reference in New Issue
Block a user