mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-22 03:53:08 +00:00
Fix style
This commit is contained in:
@@ -45,7 +45,6 @@ use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
|
||||
use phpDocumentor\Reflection\DocBlock\Tag;
|
||||
use phpDocumentor\Reflection\DocBlock\TagFactory;
|
||||
use phpDocumentor\Reflection\DocBlock\Tags\BaseTag;
|
||||
use phpDocumentor\Reflection\DocBlock\Tags\Property;
|
||||
use phpDocumentor\Reflection\DocBlockFactory;
|
||||
use phpDocumentor\Reflection\FqsenResolver;
|
||||
use phpDocumentor\Reflection\TypeResolver;
|
||||
@@ -980,13 +979,11 @@ class ModelsCommand extends Command
|
||||
* @see https://www.jetbrains.com/help/phpstorm/php-unnecessary-fully-qualified-name.html
|
||||
*/
|
||||
$tags[] = $tagFactory->create('@noinspection PhpUnnecessaryFullyQualifiedNameInspection', $phpDocContext);
|
||||
|
||||
}
|
||||
|
||||
$serializer = new Serializer();
|
||||
|
||||
if ($this->write_mixin) {
|
||||
|
||||
// remove all mixin tags prefixed with IdeHelper
|
||||
$mixinTags = array_filter($existingTags, function (Tag $tag) {
|
||||
return !($tag instanceof BaseTag) || !Str::startsWith($tag->getDescription(), 'IdeHelper');
|
||||
|
||||
Reference in New Issue
Block a user