Skip to content

Commit 8e351b9

Browse files
committed
More precise string-containing functions
1 parent 3e98c15 commit 8e351b9

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

src/Type/Php/StrContainingTypeSpecifyingExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ public function specifyTypes(FunctionReflection $functionReflection, FuncCall $n
6666
[$hackstackArg, $needleArg] = self::STR_CONTAINING_FUNCTIONS[strtolower($functionReflection->getName())];
6767

6868
$haystackType = $scope->getType($args[$hackstackArg]->value);
69-
$needleType = $scope->getType($args[$needleArg]->value);
69+
$needleType = $scope->getType($args[$needleArg]->value)->toString();
7070

7171
if ($needleType->isNonEmptyString()->yes() && $haystackType->isString()->yes()) {
7272
$accessories = [

tests/PHPStan/Analyser/nsrt/implode.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ public function constArrays5($constArr) {
6161

6262
/** @param array{0: 1, 1: 'a'|'b', 3?: 'c'|'d', 4?: 'e'|'f', 5?: 'g'|'h', 6?: 'x'|'y'} $constArr */
6363
public function constArrays6($constArr) {
64-
assertType("string", implode('', $constArr));
64+
assertType("literal-string&lowercase-string&non-falsy-string", implode('', $constArr));
6565
}
6666
}

tests/PHPStan/Analyser/nsrt/non-empty-string-str-containing-fns.php

+10
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ class Foo {
1414
*/
1515
public function strContains(string $s, string $s2, $nonES, $nonFalsy, $numS, $literalS, $nonEAndNumericS, int $i): void
1616
{
17+
if (str_contains($i, 0)) {
18+
assertType('int', $i);
19+
}
20+
if (str_contains($s, 0)) {
21+
assertType('non-empty-string', $s);
22+
}
23+
if (str_contains($s, 1)) {
24+
assertType('non-falsy-string', $s);
25+
}
26+
1727
if (str_contains($s, ':')) {
1828
assertType('non-falsy-string', $s);
1929
}

0 commit comments

Comments
 (0)