Test Setup Failed
Push — master ( ee8619...0034f2 )
by Matthew
04:38
created
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.
src/Psalm/Internal/Codebase/InternalCallMapHandler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -49,6 +49,7 @@
 block discarded – undo
49 49
     /**
50 50
      * @param  string                           $method_id
51 51
      * @param  array<int, PhpParser\Node\Arg>   $args
52
+     * @param \Psalm\Internal\Provider\NodeDataProvider|null $nodes
52 53
      *
53 54
      * @return TCallable
54 55
      */
Please login to merge, or discard this patch.
src/Psalm/Type/Atomic/TNamedObject.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -130,6 +130,9 @@
 block discarded – undo
130 130
         return $this->value !== 'static';
131 131
     }
132 132
 
133
+    /**
134
+     * @param Codebase $codebase
135
+     */
133 136
     public function replaceTemplateTypesWithArgTypes(
134 137
         TemplateResult $template_result,
135 138
         ?Codebase $codebase
Please login to merge, or discard this patch.
src/Psalm/Internal/Type/SimpleAssertionReconciler.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -48,6 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * @param   string[]  $suppressed_issues
50 50
      * @param   0|1|2    $failed_reconciliation
51
+     * @param CodeLocation $code_location
51 52
      */
52 53
     public static function reconcile(
53 54
         string $assertion,
@@ -368,6 +369,7 @@  discard block
 block discarded – undo
368 369
     /**
369 370
      * @param   string[]  $suppressed_issues
370 371
      * @param   0|1|2    $failed_reconciliation
372
+     * @param null|integer $min_count
371 373
      */
372 374
     private static function reconcileNonEmptyCountable(
373 375
         Union $existing_var_type,
@@ -1227,8 +1229,6 @@  discard block
 block discarded – undo
1227 1229
     }
1228 1230
 
1229 1231
     /**
1230
-     * @param   string[]  $suppressed_issues
1231
-     * @param   0|1|2    $failed_reconciliation
1232 1232
      */
1233 1233
     private static function reconcileInArray(
1234 1234
         Codebase $codebase,
@@ -1271,8 +1271,6 @@  discard block
 block discarded – undo
1271 1271
     }
1272 1272
 
1273 1273
     /**
1274
-     * @param   string[]  $suppressed_issues
1275
-     * @param   0|1|2    $failed_reconciliation
1276 1274
      */
1277 1275
     private static function reconcileHasArrayKey(
1278 1276
         Union $existing_var_type,
Please login to merge, or discard this patch.