Completed
Push — master ( 45e540...5463f8 )
by Jaap
05:31 queued 10s
created
src/DocBlock/Tags/Property.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/PropertyWrite.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 */
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/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.