summaryrefslogtreecommitdiff
path: root/scripts/dev/gen_stub.php
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/dev/gen_stub.php')
-rwxr-xr-xscripts/dev/gen_stub.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/dev/gen_stub.php b/scripts/dev/gen_stub.php
index 253c188b2a..f3a9a492b0 100755
--- a/scripts/dev/gen_stub.php
+++ b/scripts/dev/gen_stub.php
@@ -373,9 +373,10 @@ function parseFunctionLike(string $name, Node\FunctionLike $func, ?string $cond)
throw new Exception("Error in function $name: only the last parameter can be variadic");
}
+ $type = $param->type ? Type::fromNode($param->type) : null;
if ($param->default instanceof Expr\ConstFetch &&
$param->default->name->toLowerString() === "null" &&
- $param->type && !($param->type instanceof Node\NullableType)
+ $type && !$type->isNullable()
) {
throw new Exception(
"Parameter $varName of function $name has null default, but is not nullable");
@@ -387,7 +388,7 @@ function parseFunctionLike(string $name, Node\FunctionLike $func, ?string $cond)
$varName,
$sendBy,
$param->variadic,
- $param->type ? Type::fromNode($param->type) : null
+ $type
);
if (!$param->default && !$param->variadic) {
$numRequiredArgs = $i + 1;