Completed
Push — master ( 653707...ef73f5 )
by Chuck
10:10 queued 03:33
created
tests/integration/UsingTagsTest.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 namespace phpDocumentor\Reflection;
14 14
 
15 15
 use Mockery as m;
16
-use phpDocumentor\Reflection\DocBlock\Description;
17
-use phpDocumentor\Reflection\DocBlock\Tag;
18 16
 use PHPUnit\Framework\TestCase;
19 17
 
20 18
 /**
Please login to merge, or discard this patch.
src/DocBlock/Tags/Example.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -43,6 +43,9 @@
 block discarded – undo
43 43
      */
44 44
     private $lineCount;
45 45
 
46
+    /**
47
+     * @param integer|null $lineCount
48
+     */
46 49
     public function __construct(string $filePath, bool $isURI, int $startingLine, $lineCount, $description)
47 50
     {
48 51
         Assert::notEmpty($filePath);
Please login to merge, or discard this patch.
src/DocBlock/StandardTagFactory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -104,6 +104,7 @@
 block discarded – undo
104 104
 
105 105
     /**
106 106
      * {@inheritDoc}
107
+     * @param TypeContext $context
107 108
      */
108 109
     public function create(string $tagLine, ?TypeContext $context = null): ?Tag
109 110
     {
Please login to merge, or discard this patch.
src/DocBlockFactory.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -61,6 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * @param object|string $docblock A string containing the DocBlock to parse or an object supporting the
63 63
      *                                getDocComment method (such as a ReflectionClass object).
64
+     * @param Types\Context $context
64 65
      */
65 66
     public function create($docblock, ?Types\Context $context = null, ?Location $location = null): DocBlock
66 67
     {
@@ -95,6 +96,10 @@  discard block
 block discarded – undo
95 96
         );
96 97
     }
97 98
 
99
+    /**
100
+     * @param integer $tagName
101
+     * @param string $handler
102
+     */
98 103
     public function registerTagHandler($tagName, $handler): void
99 104
     {
100 105
         $this->tagFactory->registerTagHandler($tagName, $handler);
@@ -241,6 +246,9 @@  discard block
 block discarded – undo
241 246
         return $result;
242 247
     }
243 248
 
249
+    /**
250
+     * @param string $tags
251
+     */
244 252
     private function filterTagBlock($tags): ?string
245 253
     {
246 254
         $tags = trim($tags);
Please login to merge, or discard this patch.
src/DocBlock/Tags/Method.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
 
64 64
     /**
65 65
      * {@inheritdoc}
66
+     * @param TypeResolver $typeResolver
67
+     * @param \Mockery\MockInterface $descriptionFactory
68
+     * @param TypeContext $context
66 69
      */
67 70
     public static function create(
68 71
         string $body,
Please login to merge, or discard this patch.