Completed
Pull Request — master (#68)
by
unknown
08:47
created
src/DocBlockFactory.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,6 +104,10 @@  discard block
 block discarded – undo
104 104
         );
105 105
     }
106 106
 
107
+    /**
108
+     * @param integer $tagName
109
+     * @param string $handler
110
+     */
107 111
     public function registerTagHandler($tagName, $handler)
108 112
     {
109 113
         $this->tagFactory->registerTagHandler($tagName, $handler);
@@ -255,7 +259,7 @@  discard block
 block discarded – undo
255 259
     }
256 260
 
257 261
     /**
258
-     * @param $tags
262
+     * @param string $tags
259 263
      * @return string
260 264
      */
261 265
     private function filterTagBlock($tags)
Please login to merge, or discard this patch.
tests/integration/ReconstitutingADocBlockTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Description;
16
-use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18
-use phpDocumentor\Reflection\DocBlock\Tags\See;
19
-
20 15
 /**
21 16
  * @coversNothing
22 17
  */
Please login to merge, or discard this patch.
tests/integration/UsingTagsTest.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -12,11 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15
-use phpDocumentor\Reflection\DocBlock\Description;
16
-use phpDocumentor\Reflection\DocBlock\StandardTagFactory;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18
-use phpDocumentor\Reflection\DocBlock\Tags\See;
19
-
20 15
 /**
21 16
  * @coversNothing
22 17
  */
Please login to merge, or discard this patch.
tests/unit/DocBlock/SerializerTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace phpDocumentor\Reflection\DocBlock;
14 14
 
15
-use Mockery as m;
16 15
 use phpDocumentor\Reflection\DocBlock;
17 16
 
18 17
 /**
Please login to merge, or discard this patch.
tests/unit/DocBlock/Tags/MethodTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use phpDocumentor\Reflection\DocBlock\Description;
17 17
 use phpDocumentor\Reflection\DocBlock\DescriptionFactory;
18 18
 use phpDocumentor\Reflection\Fqsen;
19
-use phpDocumentor\Reflection\FqsenResolver;
20 19
 use phpDocumentor\Reflection\TypeResolver;
21 20
 use phpDocumentor\Reflection\Types\Context;
22 21
 use phpDocumentor\Reflection\Types\Object_;
Please login to merge, or discard this patch.