Test Setup Failed
Pull Request — master (#3477)
by Joe
05:41
created
src/Psalm/Type/Atomic/TObjectWithProperties.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
             ', ',
98 98
             array_map(
99 99
                 /**
100
-                 * @param  string|int $name
100
+                 * @param  boolean $name
101 101
                  * @param  Union $type
102 102
                  *
103 103
                  * @return string
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
                     ', ',
150 150
                     array_map(
151 151
                         /**
152
-                         * @param  string|int $name
152
+                         * @param  string|null $name
153 153
                          * @param  Union  $type
154 154
                          *
155 155
                          * @return string
Please login to merge, or discard this patch.
src/Psalm/Type/Reconciler.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -440,7 +440,7 @@
 block discarded – undo
440 440
      * @param  string                    $key
441 441
      * @param  array<string,Type\Union>  $existing_keys
442 442
      * @param  array<string,mixed>       $new_assertions
443
-     * @param  string[][]                $new_type_parts
443
+     * @param null|CodeLocation $code_location
444 444
      *
445 445
      * @return Type\Union|null
446 446
      */
Please login to merge, or discard this patch.
src/Psalm/Type/Union.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1653,6 +1653,7 @@
 block discarded – undo
1653 1653
      * @param  array<string>    $suppressed_issues
1654 1654
      * @param  array<string, bool> $phantom_classes
1655 1655
      * @param  bool             $inferred
1656
+     * @param string $calling_method_id
1656 1657
      *
1657 1658
      * @return bool
1658 1659
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Analyzer/Statements/Expression/TernaryAnalyzer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@
 block discarded – undo
59 59
         $if_clauses = array_values(
60 60
             array_map(
61 61
                 /**
62
-                 * @return \Psalm\Internal\Clause
62
+                 * @return boolean
63 63
                  */
64 64
                 function (\Psalm\Internal\Clause $c) use ($mixed_var_ids) {
65 65
                     $keys = array_keys($c->possibilities);
Please login to merge, or discard this patch.
src/Psalm/Internal/Provider/MethodExistenceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param  array<PhpParser\Node\Arg>  $call_args
65 64
      *
66 65
      * @return ?bool
67 66
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Provider/MethodVisibilityProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param  array<PhpParser\Node\Arg>  $call_args
65 64
      *
66 65
      * @return ?bool
67 66
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Provider/PropertyExistenceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param  array<PhpParser\Node\Arg>  $call_args
65 64
      *
66 65
      * @return ?bool
67 66
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Provider/PropertyVisibilityProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@
 block discarded – undo
61 61
     }
62 62
 
63 63
     /**
64
-     * @param  array<PhpParser\Node\Arg>  $call_args
65 64
      *
66 65
      * @return ?bool
67 66
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Analyzer/Statements/Expression/IncludeAnalyzer.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -218,6 +218,8 @@
 block discarded – undo
218 218
     /**
219 219
      * @param  PhpParser\Node\Expr $stmt
220 220
      * @param  string              $file_name
221
+     * @param \Psalm\Internal\Provider\NodeDataProvider|null $type_provider
222
+     * @param StatementsAnalyzer|null $statements_analyzer
221 223
      *
222 224
      * @return string|null
223 225
      * @psalm-suppress MixedAssignment
Please login to merge, or discard this patch.