We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e2be02 commit e6510aaCopy full SHA for e6510aa
hooks/TestCaseHandler.php
@@ -371,6 +371,9 @@ function (
371
$potential_argument_type = $potential_argument_types[$param_offset];
372
373
assert(null !== $param->type);
374
+ if (is_null($param->type)) {
375
+ $param->type = Type::getMixed();
376
+ }
377
if ($param->is_variadic) {
378
$param_types = self::getAtomics($param->type);
379
$variadic_param_type = new Type\Union(array_values($param_types));
0 commit comments