Test Setup Failed
Pull Request — master (#3650)
by Olle
17:00 queued 12:17
created
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.
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.