Smarter reset

This commit is contained in:
Barry vd. Heuvel
2024-10-28 12:09:38 +01:00
parent 7740b80704
commit 29f874381e
4 changed files with 19 additions and 3 deletions
+9 -3
View File
@@ -945,13 +945,19 @@ class ModelsCommand extends Command
$reflection->getParentClass()->getInterfaceNames() $reflection->getParentClass()->getInterfaceNames()
); );
$phpdoc = new DocBlock($reflection, new Context($namespace));
if ($this->reset) { if ($this->reset) {
$phpdoc = new DocBlock('', new Context($namespace));
$phpdoc->setText( $phpdoc->setText(
(new DocBlock($reflection, new Context($namespace)))->getText() (new DocBlock($reflection, new Context($namespace)))->getText()
); );
} else { foreach ($phpdoc->getTags() as $tag) {
$phpdoc = new DocBlock($reflection, new Context($namespace)); if (
in_array($tag->getName(), ['property', 'property-read', 'property-write', 'method', 'mixin'])
|| ($tag->getName() === 'noinspection' && in_array($tag->getContent(), ['PhpUnnecessaryFullyQualifiedNameInspection', 'PhpFullyQualifiedNameUsageInspection']))
) {
$phpdoc->deleteTag($tag);
}
}
} }
$properties = []; $properties = [];
@@ -9,7 +9,11 @@ use Illuminate\Database\Eloquent\Model;
/** /**
* Text of existing phpdoc * Text of existing phpdoc
* *
* @implements \ArrayAccess
* @noinspection PhpUnreachableStatementInspection
* @PhpFullyQualifiedNameUsageInspection PhpUnnecessaryFullyQualifiedNameInspection
* @property string $foo * @property string $foo
* @mixin \Eloquent
*/ */
class Simple extends Model class Simple extends Model
{ {
@@ -9,6 +9,9 @@ use Illuminate\Database\Eloquent\Model;
/** /**
* Text of existing phpdoc * Text of existing phpdoc
* *
* @implements \ArrayAccess
* @noinspection PhpUnreachableStatementInspection
* @PhpFullyQualifiedNameUsageInspection PhpUnnecessaryFullyQualifiedNameInspection
* @property string $foo * @property string $foo
* @property int $id * @property int $id
* @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery()
@@ -9,6 +9,9 @@ use Illuminate\Database\Eloquent\Model;
/** /**
* Text of existing phpdoc * Text of existing phpdoc
* *
* @implements \ArrayAccess
* @noinspection PhpUnreachableStatementInspection
* @PhpFullyQualifiedNameUsageInspection PhpUnnecessaryFullyQualifiedNameInspection
* @property int $id * @property int $id
* @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newQuery() * @method static \Illuminate\Database\Eloquent\Builder<static>|Simple newQuery()