Skip to content

Commit 80c1df2

Browse files
committed
Too-wide return type - allow void return type in a union when the returned expr is originally void
1 parent f2dfd5d commit 80c1df2

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

src/Rules/TooWideTypehints/TooWideFunctionReturnTypehintRule.php

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@ public function processNode(Node $node, Scope $scope): array
5656
$returnTypes[] = $returnStatement->getScope()->getType($returnNode->expr);
5757
}
5858

59+
if (!$statementResult->isAlwaysTerminating()) {
60+
$returnTypes[] = new VoidType();
61+
}
62+
5963
$returnType = TypeCombinator::union(...$returnTypes);
6064

6165
$messages = [];

src/Rules/TooWideTypehints/TooWideMethodReturnTypehintRule.php

+4
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,10 @@ public function processNode(Node $node, Scope $scope): array
8282
$returnTypes[] = $returnStatement->getScope()->getType($returnNode->expr);
8383
}
8484

85+
if (!$statementResult->isAlwaysTerminating()) {
86+
$returnTypes[] = new VoidType();
87+
}
88+
8589
$returnType = TypeCombinator::union(...$returnTypes);
8690
if (
8791
!$method->isPrivate()

tests/PHPStan/Rules/TooWideTypehints/data/bug-11980-function.php

+21
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,25 @@ function process2($tokens, $stackPtr)
4646
// Not a stand-alone statement.
4747
return $end;
4848
}
49+
50+
return 1;
51+
}
52+
53+
/** @return int|void */
54+
function process3( int $code ) {
55+
56+
if ( $code === \T_CLASS ) {
57+
return process_class( $code );
58+
}
59+
60+
process_function( $code );
61+
}
62+
63+
/** @return int */
64+
function process_class(int $code) {
65+
return $code;
66+
}
67+
68+
/** @return void */
69+
function process_function(int $code) {
4970
}

tests/PHPStan/Rules/TooWideTypehints/data/bug-11980.php

+21
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,26 @@ public function process2($tokens, $stackPtr)
4949
// Not a stand-alone statement.
5050
return $end;
5151
}
52+
53+
return 1;
54+
}
55+
56+
/** @return int|void */
57+
public function process3( int $code ) {
58+
59+
if ( $code === \T_CLASS ) {
60+
return $this->process_class( $code );
61+
}
62+
63+
$this->process_function( $code );
64+
}
65+
66+
/** @return int */
67+
public function process_class(int $code) {
68+
return $code;
69+
}
70+
71+
/** @return void */
72+
public function process_function(int $code) {
5273
}
5374
}

0 commit comments

Comments
 (0)