mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 01:57:13 +00:00
Use accessor docblock return type to guess property type
This commit is contained in:
@@ -386,7 +386,9 @@ class ModelsCommand extends Command
|
|||||||
//Magic get<name>Attribute
|
//Magic get<name>Attribute
|
||||||
$name = Str::snake(substr($method, 3, -9));
|
$name = Str::snake(substr($method, 3, -9));
|
||||||
if (!empty($name)) {
|
if (!empty($name)) {
|
||||||
$this->setProperty($name, null, true, null);
|
$reflection = new \ReflectionMethod($model, $method);
|
||||||
|
$type = $this->getReturnTypeFromDocBlock($reflection);
|
||||||
|
$this->setProperty($name, $type, true, null);
|
||||||
}
|
}
|
||||||
} elseif (Str::startsWith($method, 'set') && Str::endsWith(
|
} elseif (Str::startsWith($method, 'set') && Str::endsWith(
|
||||||
$method,
|
$method,
|
||||||
@@ -669,4 +671,23 @@ class ModelsCommand extends Command
|
|||||||
{
|
{
|
||||||
return $this->laravel['config']->get('ide-helper.model_camel_case_properties', false);
|
return $this->laravel['config']->get('ide-helper.model_camel_case_properties', false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get method return type based on it DocBlock comment
|
||||||
|
*
|
||||||
|
* @param \ReflectionMethod $reflection
|
||||||
|
*
|
||||||
|
* @return null|string
|
||||||
|
*/
|
||||||
|
protected function getReturnTypeFromDocBlock(\ReflectionMethod $reflection)
|
||||||
|
{
|
||||||
|
$type = null;
|
||||||
|
$phpdoc = new DocBlock($reflection);
|
||||||
|
|
||||||
|
if ($phpdoc->hasTag('return')) {
|
||||||
|
$type = $phpdoc->getTagsByName('return')[0]->getContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $type;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user