Skip to content

Commit 5f80055

Browse files
authored
Merge pull request #264 from theodorejb/patch-1
Fix inconsistent switch case syntax
2 parents 8a16464 + d3998c8 commit 5f80055

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ function _checkTypehint(callable $callback, \Throwable $reason): bool
297297
break;
298298
case $type instanceof \ReflectionIntersectionType:
299299
$isTypeUnion = false;
300-
case $type instanceof \ReflectionUnionType;
300+
case $type instanceof \ReflectionUnionType:
301301
$types = $type->getTypes();
302302
break;
303303
default:

0 commit comments

Comments
 (0)