Test Setup Failed
Push — master ( ee8619...0034f2 )
by Matthew
04:38
created
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/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.
src/Psalm/Type/Atomic.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -453,7 +453,7 @@
 block discarded – undo
453 453
                     $this->extra_types
454 454
                     && array_filter(
455 455
                         $this->extra_types,
456
-                        /** @param Atomic $a */
456
+                        /** @param Codebase $a */
457 457
                         function (Atomic $a) use ($codebase) : bool {
458 458
                             return $a->hasArrayAccessInterface($codebase);
459 459
                         }
Please login to merge, or discard this patch.
src/Psalm/Type/Atomic/HasIntersectionTrait.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -19,6 +19,8 @@
 block discarded – undo
19 19
 
20 20
     /**
21 21
      * @param  array<string, string> $aliased_classes
22
+     * @param string|null $namespace
23
+     * @param string|null $this_class
22 24
      */
23 25
     private function getNamespacedIntersectionTypes(
24 26
         ?string $namespace,
Please login to merge, or discard this patch.
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.