Completed
Pull Request — master (#202)
by Pol
05:27
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/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\LegacyMockInterface $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.
src/DocBlockFactory.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -74,6 +74,7 @@
 block discarded – undo
74 74
     /**
75 75
      * @param object|string $docblock A string containing the DocBlock to parse or an object supporting the
76 76
      *                                getDocComment method (such as a ReflectionClass object).
77
+     * @param Types\Context $context
77 78
      */
78 79
     public function create($docblock, ?Types\Context $context = null, ?Location $location = null) : DocBlock
79 80
     {
Please login to merge, or discard this patch.
src/DocBlock/Tags/Param.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\LegacyMockInterface $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.
src/DocBlock/Tags/Property.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\LegacyMockInterface $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.
src/DocBlock/Tags/PropertyRead.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\LegacyMockInterface $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.
src/DocBlock/Tags/PropertyWrite.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\LegacyMockInterface $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.
src/DocBlock/Tags/Return_.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\LegacyMockInterface $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.
src/DocBlock/Tags/Throws.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\LegacyMockInterface $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.