Completed
Push — master ( f60759...069a78 )
by Jaap
17s queued 10s
created
src/DocBlock/Tags/Param.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -56,6 +56,10 @@
 block discarded – undo
56 56
         $this->isReference  = $isReference;
57 57
     }
58 58
 
59
+    /**
60
+     * @param TypeResolver $typeResolver
61
+     * @param TypeContext $context
62
+     */
59 63
     public static function create(
60 64
         string $body,
61 65
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Property.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
     /** @var string|null */
36 36
     protected $variableName;
37 37
 
38
+    /**
39
+     * @param string $variableName
40
+     */
38 41
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
39 42
     {
40 43
         Assert::string($variableName);
@@ -45,6 +48,10 @@  discard block
 block discarded – undo
45 48
         $this->description  = $description;
46 49
     }
47 50
 
51
+    /**
52
+     * @param TypeResolver $typeResolver
53
+     * @param TypeContext $context
54
+     */
48 55
     public static function create(
49 56
         string $body,
50 57
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/PropertyWrite.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
     /** @var string */
36 36
     protected $variableName;
37 37
 
38
+    /**
39
+     * @param string $variableName
40
+     */
38 41
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
39 42
     {
40 43
         Assert::string($variableName);
@@ -45,6 +48,10 @@  discard block
 block discarded – undo
45 48
         $this->description  = $description;
46 49
     }
47 50
 
51
+    /**
52
+     * @param TypeResolver $typeResolver
53
+     * @param TypeContext $context
54
+     */
48 55
     public static function create(
49 56
         string $body,
50 57
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/Var_.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
     /** @var string|null */
36 36
     protected $variableName = '';
37 37
 
38
+    /**
39
+     * @param string $variableName
40
+     */
38 41
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
39 42
     {
40 43
         Assert::string($variableName);
@@ -45,6 +48,10 @@  discard block
 block discarded – undo
45 48
         $this->description  = $description;
46 49
     }
47 50
 
51
+    /**
52
+     * @param TypeResolver $typeResolver
53
+     * @param TypeContext $context
54
+     */
48 55
     public static function create(
49 56
         string $body,
50 57
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.
src/DocBlock/Tags/PropertyRead.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@  discard block
 block discarded – undo
35 35
     /** @var string|null */
36 36
     protected $variableName;
37 37
 
38
+    /**
39
+     * @param string $variableName
40
+     */
38 41
     public function __construct(?string $variableName, ?Type $type = null, ?Description $description = null)
39 42
     {
40 43
         Assert::string($variableName);
@@ -45,6 +48,10 @@  discard block
 block discarded – undo
45 48
         $this->description  = $description;
46 49
     }
47 50
 
51
+    /**
52
+     * @param TypeResolver $typeResolver
53
+     * @param TypeContext $context
54
+     */
48 55
     public static function create(
49 56
         string $body,
50 57
         ?TypeResolver $typeResolver = null,
Please login to merge, or discard this patch.