We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 187ce9b commit ead24b1Copy full SHA for ead24b1
src/Console/ModelsCommand.php
@@ -628,6 +628,10 @@ public function getPropertiesFromMethods($model)
628
)
629
);
630
});
631
+ // https://github.com/barryvdh/laravel-ide-helper/issues/1664
632
+ $reflections = array_filter($reflections, function (\ReflectionMethod $methodReflection) {
633
+ return !($methodReflection->getName() === 'getUseFactoryAttribute');
634
+ });
635
sort($reflections);
636
foreach ($reflections as $reflection) {
637
$type = $this->getReturnTypeFromReflection($reflection);
0 commit comments