Completed
Push — master ( da1c4e...70745c )
by Jaap
06:01
created
src/DocBlock/Tags/Var_.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
     /** @var string|null */
37 37
     protected $variableName = '';
38 38
 
39
+    /**
40
+     * @param string $variableName
41
+     */
39 42
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
40 43
     {
41 44
         Assert::string($variableName);
@@ -46,6 +49,11 @@  discard block
 block discarded – undo
46 49
         $this->description  = $description;
47 50
     }
48 51
 
52
+    /**
53
+     * @param TypeResolver $typeResolver
54
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
55
+     * @param TypeContext $context
56
+     */
49 57
     public static function create(
50 58
         string $body,
51 59
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/PropertyRead.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@  discard block
 block discarded – undo
36 36
     /** @var string|null */
37 37
     protected $variableName;
38 38
 
39
+    /**
40
+     * @param string $variableName
41
+     */
39 42
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
40 43
     {
41 44
         Assert::string($variableName);
@@ -46,6 +49,11 @@  discard block
 block discarded – undo
46 49
         $this->description  = $description;
47 50
     }
48 51
 
52
+    /**
53
+     * @param TypeResolver $typeResolver
54
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
55
+     * @param TypeContext $context
56
+     */
49 57
     public static function create(
50 58
         string $body,
51 59
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Covers.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -41,6 +41,11 @@
 block discarded – undo
41 41
         $this->description = $description;
42 42
     }
43 43
 
44
+    /**
45
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
46
+     * @param \Mockery\LegacyMockInterface $resolver
47
+     * @param TypeContext $context
48
+     */
44 49
     public static function create(
45 50
         string $body,
46 51
         ?DescriptionFactory $descriptionFactory = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Generic.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -43,6 +43,8 @@
 block discarded – undo
43 43
     /**
44 44
      * Creates a new tag that represents any unknown tag type.
45 45
      *
46
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
47
+     * @param TypeContext $context
46 48
      * @return static
47 49
      */
48 50
     public static function create(
Please login to merge, or discard this patch.
src/DocBlock/Tags/Link.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -39,6 +39,10 @@
 block discarded – undo
39 39
         $this->description = $description;
40 40
     }
41 41
 
42
+    /**
43
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
44
+     * @param TypeContext $context
45
+     */
42 46
     public static function create(
43 47
         string $body,
44 48
         ?DescriptionFactory $descriptionFactory = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/See.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -44,6 +44,10 @@
 block discarded – undo
44 44
         $this->description = $description;
45 45
     }
46 46
 
47
+    /**
48
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
49
+     * @param TypeContext $context
50
+     */
47 51
     public static function create(
48 52
         string $body,
49 53
         ?FqsenResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Source.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -47,6 +47,10 @@
 block discarded – undo
47 47
         $this->description  = $description;
48 48
     }
49 49
 
50
+    /**
51
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
52
+     * @param TypeContext $context
53
+     */
50 54
     public static function create(
51 55
         string $body,
52 56
         ?DescriptionFactory $descriptionFactory = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Uses.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -41,6 +41,10 @@
 block discarded – undo
41 41
         $this->description = $description;
42 42
     }
43 43
 
44
+    /**
45
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
46
+     * @param TypeContext $context
47
+     */
44 48
     public static function create(
45 49
         string $body,
46 50
         ?FqsenResolver $resolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Version.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -46,6 +46,9 @@  discard block
 block discarded – undo
46 46
     /** @var string|null The version vector. */
47 47
     private $version;
48 48
 
49
+    /**
50
+     * @param string $version
51
+     */
49 52
     public function __construct(?string $version = null, ?Description $description = null)
50 53
     {
51 54
         Assert::nullOrStringNotEmpty($version);
@@ -54,6 +57,11 @@  discard block
 block discarded – undo
54 57
         $this->description = $description;
55 58
     }
56 59
 
60
+    /**
61
+     * @param string $body
62
+     * @param \Mockery\LegacyMockInterface $descriptionFactory
63
+     * @param TypeContext $context
64
+     */
57 65
     public static function create(
58 66
         ?string $body,
59 67
         ?DescriptionFactory $descriptionFactory = null,
Please login to merge, or discard this patch.