Skip to content

Commit 05279fb

Browse files
committed
More precise string-casing functions
1 parent 45d8715 commit 05279fb

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

src/Type/Php/StrCaseFunctionsReturnTypeExtension.php

+6-5
Original file line numberDiff line numberDiff line change
@@ -142,18 +142,19 @@ public function getTypeFromFunctionCall(
142142
}
143143

144144
$accessoryTypes = [];
145-
if ($forceLowercase || ($keepLowercase && $argType->isLowercaseString()->yes())) {
145+
$argStringType = $argType->toString();
146+
if ($forceLowercase || ($keepLowercase && $argStringType->isLowercaseString()->yes())) {
146147
$accessoryTypes[] = new AccessoryLowercaseStringType();
147148
}
148-
if ($forceUppercase || ($keepUppercase && $argType->isUppercaseString()->yes())) {
149+
if ($forceUppercase || ($keepUppercase && $argStringType->isUppercaseString()->yes())) {
149150
$accessoryTypes[] = new AccessoryUppercaseStringType();
150151
}
151152

152-
if ($argType->isNumericString()->yes()) {
153+
if ($argStringType->isNumericString()->yes()) {
153154
$accessoryTypes[] = new AccessoryNumericStringType();
154-
} elseif ($argType->isNonFalsyString()->yes()) {
155+
} elseif ($argStringType->isNonFalsyString()->yes()) {
155156
$accessoryTypes[] = new AccessoryNonFalsyStringType();
156-
} elseif ($argType->isNonEmptyString()->yes()) {
157+
} elseif ($argStringType->isNonEmptyString()->yes()) {
157158
$accessoryTypes[] = new AccessoryNonEmptyStringType();
158159
}
159160

tests/PHPStan/Analyser/nsrt/non-falsy-string.php

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ function stringFunctions(string $s, $nonFalsey, $arrayOfNonFalsey, $nonEmptyArra
8787
assertType('non-falsy-string', escapeshellarg($nonFalsey));
8888
assertType('non-falsy-string', escapeshellcmd($nonFalsey));
8989

90+
assertType('non-falsy-string&uppercase-string', strtoupper($s ?: 1));
9091
assertType('non-falsy-string&uppercase-string', strtoupper($nonFalsey));
9192
assertType('lowercase-string&non-falsy-string', strtolower($nonFalsey));
9293
assertType('non-falsy-string&uppercase-string', mb_strtoupper($nonFalsey));

0 commit comments

Comments
 (0)