Skip to content

Commit bcad8d9

Browse files
authored
Allow conditional type in callable return type
1 parent 9f854d2 commit bcad8d9

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

src/Parser/TypeParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ private function parseCallableReturnType(TokenIterator $tokens): Ast\Type\TypeNo
524524
return $this->parseNullable($tokens);
525525

526526
} elseif ($tokens->tryConsumeTokenType(Lexer::TOKEN_OPEN_PARENTHESES)) {
527-
$type = $this->parse($tokens);
527+
$type = $this->subParse($tokens);
528528
$tokens->consumeTokenType(Lexer::TOKEN_CLOSE_PARENTHESES);
529529
if ($tokens->isCurrentTokenType(Lexer::TOKEN_OPEN_SQUARE_BRACKET)) {
530530
$type = $this->tryParseArrayOrOffsetAccess($tokens, $type);

tests/PHPStan/Parser/TypeParserTest.php

+12
Original file line numberDiff line numberDiff line change
@@ -2154,6 +2154,18 @@ public function provideParseData(): array
21542154
]),
21552155
]),
21562156
],
2157+
[
2158+
'Closure(Container):($serviceId is class-string<TService> ? TService : mixed)',
2159+
new CallableTypeNode(new IdentifierTypeNode('Closure'), [
2160+
new CallableTypeParameterNode(new IdentifierTypeNode('Container'), false, false, '', false),
2161+
], new ConditionalTypeForParameterNode(
2162+
'$serviceId',
2163+
new GenericTypeNode(new IdentifierTypeNode('class-string'), [new IdentifierTypeNode('TService')], ['invariant']),
2164+
new IdentifierTypeNode('TService'),
2165+
new IdentifierTypeNode('mixed'),
2166+
false
2167+
)),
2168+
],
21572169
];
21582170
}
21592171

0 commit comments

Comments
 (0)