Test Setup Failed
Pull Request — master (#3559)
by Jáchym
05:17
created
src/Psalm/Internal/Type/AssertionReconciler.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -336,6 +336,7 @@  discard block
 block discarded – undo
336 336
      * @param   string[]    $suppressed_issues
337 337
      * @param   array<string, array<string, array{Type\Union}>> $template_type_map
338 338
      * @param-out   0|1|2   $failed_reconciliation
339
+     * @param null|CodeLocation $code_location
339 340
      */
340 341
     private static function refine(
341 342
         StatementsAnalyzer $statements_analyzer,
@@ -848,6 +849,7 @@  discard block
 block discarded – undo
848 849
 
849 850
     /**
850 851
      * @param  string[]   $suppressed_issues
852
+     * @param null|CodeLocation $code_location
851 853
      */
852 854
     private static function handleLiteralEquality(
853 855
         string $assertion,
Please login to merge, or discard this patch.
src/Psalm/Internal/Type/NegatedAssertionReconciler.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
      * @param  array<string, array<string, array{Type\Union}>> $template_type_map
29 29
      * @param  string[]   $suppressed_issues
30 30
      * @param  0|1|2      $failed_reconciliation
31
+     * @param null|CodeLocation $code_location
31 32
      *
32 33
      * @return Type\Union
33 34
      */
Please login to merge, or discard this patch.
src/Psalm/Internal/Type/SimpleNegatedAssertionReconciler.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -192,8 +192,6 @@  discard block
 block discarded – undo
192 192
     }
193 193
 
194 194
     /**
195
-     * @param   string[]  $suppressed_issues
196
-     * @param   0|1|2    $failed_reconciliation
197 195
      */
198 196
     private static function reconcileCallable(
199 197
         Type\Union $existing_var_type
@@ -282,6 +280,7 @@  discard block
 block discarded – undo
282 280
     /**
283 281
      * @param   string[]  $suppressed_issues
284 282
      * @param   0|1|2    $failed_reconciliation
283
+     * @param null|integer $min_count
285 284
      */
286 285
     private static function reconcileNonEmptyCountable(
287 286
         Type\Union $existing_var_type,
Please login to merge, or discard this patch.
src/Psalm/Internal/TypeVisitor/TypeScanner.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
 
21 21
     /**
22 22
      * @param  array<string, mixed> $phantom_classes
23
+     * @param null|FileStorage $file_storage
23 24
      *
24 25
      * @return void
25 26
      */
Please login to merge, or discard this patch.
src/Psalm/IssueBuffer.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
 use Psalm\Report\GithubActionsReport;
23 23
 use Psalm\Report\JsonReport;
24 24
 use Psalm\Report\JsonSummaryReport;
25
-use Psalm\Report\JunitReport;
26 25
 use Psalm\Report\PylintReport;
27 26
 use Psalm\Report\SonarqubeReport;
28 27
 use Psalm\Report\TextReport;
Please login to merge, or discard this patch.
src/Psalm/Plugin/Hook/FunctionReturnTypeProviderInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
     /**
18 18
      * @param  array<PhpParser\Node\Arg>    $call_args
19 19
      *
20
-     * @return ?Type\Union
20
+     * @return Type\Union|null
21 21
      */
22 22
     public static function getFunctionReturnType(
23 23
         StatementsSource $statements_source,
Please login to merge, or discard this patch.
src/Psalm/Plugin/Hook/PropertyTypeProviderInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
     public static function getClassLikeNames() : array;
15 15
 
16 16
     /**
17
-     * @param  array<PhpParser\Node\Arg>    $call_args
18 17
      *
19 18
      * @return ?Type\Union
20 19
      */
Please login to merge, or discard this patch.
src/Psalm/Report.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -63,9 +63,6 @@
 block discarded – undo
63 63
     /**
64 64
      * @param array<int, IssueData> $issues_data
65 65
      * @param array<string, int> $fixable_issue_counts
66
-     * @param bool $use_color
67
-     * @param bool $show_snippet
68
-     * @param bool $show_info
69 66
      */
70 67
     public function __construct(
71 68
         array $issues_data,
Please login to merge, or discard this patch.
src/Psalm/Type/Algebra.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -471,6 +471,7 @@
 block discarded – undo
471 471
      * @param  list<Clause>  $clauses
472 472
      * @param  array<string, bool> $cond_referenced_var_ids
473 473
      * @param  array<string, array<int, array<int, string>>> $active_truths
474
+     * @param integer $creating_object_id
474 475
      *
475 476
      * @return array<string, array<int, array<int, string>>>
476 477
      */
Please login to merge, or discard this patch.