From 93cfc743bdcd95f8dfcf475ee5b4e37a312a87a4 Mon Sep 17 00:00:00 2001 From: Gautier DELEGLISE Date: Mon, 28 Oct 2024 10:30:40 +0100 Subject: [PATCH] :green_heart: removed unecessary imports --- tests/unit/DocBlock/Tags/MethodParameterTest.php | 9 --------- tests/unit/DocBlock/Tags/MethodTest.php | 3 --- 2 files changed, 12 deletions(-) diff --git a/tests/unit/DocBlock/Tags/MethodParameterTest.php b/tests/unit/DocBlock/Tags/MethodParameterTest.php index 08d4f0e..ef64f6e 100644 --- a/tests/unit/DocBlock/Tags/MethodParameterTest.php +++ b/tests/unit/DocBlock/Tags/MethodParameterTest.php @@ -14,24 +14,15 @@ declare(strict_types=1); namespace phpDocumentor\Reflection\DocBlock\Tags; use Mockery as m; -use phpDocumentor\Reflection\DocBlock\Description; -use phpDocumentor\Reflection\DocBlock\DescriptionFactory; use phpDocumentor\Reflection\Fqsen; use phpDocumentor\Reflection\Type; -use phpDocumentor\Reflection\TypeResolver; use phpDocumentor\Reflection\Types\Array_; use phpDocumentor\Reflection\Types\Boolean; -use phpDocumentor\Reflection\Types\Compound; -use phpDocumentor\Reflection\Types\Context; use phpDocumentor\Reflection\Types\Float_; use phpDocumentor\Reflection\Types\Integer; -use phpDocumentor\Reflection\Types\Mixed_; -use phpDocumentor\Reflection\Types\Null_; use phpDocumentor\Reflection\Types\Nullable; use phpDocumentor\Reflection\Types\Object_; use phpDocumentor\Reflection\Types\String_; -use phpDocumentor\Reflection\Types\This; -use phpDocumentor\Reflection\Types\Void_; use PHPUnit\Framework\TestCase; /** diff --git a/tests/unit/DocBlock/Tags/MethodTest.php b/tests/unit/DocBlock/Tags/MethodTest.php index 77196bb..dfc0032 100644 --- a/tests/unit/DocBlock/Tags/MethodTest.php +++ b/tests/unit/DocBlock/Tags/MethodTest.php @@ -17,13 +17,10 @@ use Mockery as m; use phpDocumentor\Reflection\DocBlock\Description; use phpDocumentor\Reflection\DocBlock\DescriptionFactory; use phpDocumentor\Reflection\Fqsen; -use phpDocumentor\Reflection\Type; use phpDocumentor\Reflection\TypeResolver; use phpDocumentor\Reflection\Types\Array_; -use phpDocumentor\Reflection\Types\Boolean; use phpDocumentor\Reflection\Types\Compound; use phpDocumentor\Reflection\Types\Context; -use phpDocumentor\Reflection\Types\Float_; use phpDocumentor\Reflection\Types\Integer; use phpDocumentor\Reflection\Types\Mixed_; use phpDocumentor\Reflection\Types\Object_;