Skip to content

Commit 5892e8d

Browse files
committed
Fix how well conditional types play with pre-existing @param-out variable after assignment
1 parent 2b97628 commit 5892e8d

File tree

3 files changed

+39
-3
lines changed

3 files changed

+39
-3
lines changed

src/Analyser/NodeScopeResolver.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -4953,6 +4953,7 @@ private function processAssignVar(
49534953
}
49544954
}
49554955

4956+
$scope = $result->getScope();
49564957
$truthySpecifiedTypes = $this->typeSpecifier->specifyTypesInCondition($scope, $assignedExpr, TypeSpecifierContext::createTruthy());
49574958
$falseySpecifiedTypes = $this->typeSpecifier->specifyTypesInCondition($scope, $assignedExpr, TypeSpecifierContext::createFalsey());
49584959

@@ -4965,7 +4966,7 @@ private function processAssignVar(
49654966
$conditionalExpressions = $this->processSureNotTypesForConditionalExpressionsAfterAssign($scope, $var->name, $conditionalExpressions, $falseySpecifiedTypes, $falseyType);
49664967

49674968
$nodeCallback(new VariableAssignNode($var, $assignedExpr, $isAssignOp), $result->getScope());
4968-
$scope = $result->getScope()->assignVariable($var->name, $type, $scope->getNativeType($assignedExpr));
4969+
$scope = $scope->assignVariable($var->name, $type, $scope->getNativeType($assignedExpr));
49694970
foreach ($conditionalExpressions as $exprString => $holders) {
49704971
$scope = $scope->addConditionalExpressions($exprString, $holders);
49714972
}
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<?php
2+
3+
namespace Bug11580;
4+
5+
use function PHPStan\Testing\assertType;
6+
7+
final class HelloWorld
8+
{
9+
public function bad(string $in): void
10+
{
11+
$matches = [];
12+
if (preg_match('~^/xxx/([\w\-]+)/?([\w\-]+)?/?$~', $in, $matches)) {
13+
assertType('array{0: string, 1: non-empty-string, 2?: non-empty-string}', $matches);
14+
}
15+
}
16+
17+
public function bad2(string $in): void
18+
{
19+
$matches = [];
20+
$result = preg_match('~^/xxx/([\w\-]+)/?([\w\-]+)?/?$~', $in, $matches);
21+
if ($result) {
22+
assertType('array{0: string, 1: non-empty-string, 2?: non-empty-string}', $matches);
23+
}
24+
}
25+
26+
public function bad3(string $in): void
27+
{
28+
$result = preg_match('~^/xxx/([\w\-]+)/?([\w\-]+)?/?$~', $in, $matches);
29+
assertType('array{0?: string, 1?: non-empty-string, 2?: non-empty-string}', $matches);
30+
if ($result) {
31+
assertType('array{0: string, 1: non-empty-string, 2?: non-empty-string}', $matches);
32+
}
33+
}
34+
35+
}

tests/PHPStan/Analyser/nsrt/bug-7805.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ function foo(array $params)
2121
assertNativeType("array<mixed~'help', mixed>", $params);
2222
$params = $params === [] ? ['list'] : $params;
2323
assertType("array{'list'}", $params);
24-
assertNativeType("non-empty-array", $params);
24+
assertNativeType("array{'list'}", $params);
2525
array_unshift($params, 'help');
2626
assertType("array{'help', 'list'}", $params);
27-
assertNativeType("non-empty-array", $params);
27+
assertNativeType("array{'help', 'list'}", $params);
2828
}
2929
assertType("array{}|array{'help', 'list'}", $params);
3030
assertNativeType('array', $params);

0 commit comments

Comments
 (0)