Skip to content

Commit 35cb8d4

Browse files
staabmondrejmirtes
authored andcommitted
Fix name collisions
1 parent 695e718 commit 35cb8d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

tests/PHPStan/Testing/data/assert-type-case-insensitive.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace MissingTypeCaseSensitive;
44

5-
function doFoo(string $s) {
5+
function doFoo1(string $s) {
66
assertTYPe('string', $s);
77
}
88

tests/PHPStan/Testing/data/assert-type-missing-namespace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace MissingAssertTypeNamespace;
44

5-
function doFoo(string $s) {
5+
function doFoo1(string $s) {
66
assertType('string', $s);
77
}
88

tests/PHPStan/Testing/data/assert-type-wrong-namespace.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use function SomeWrong\Namespace\assertType;
66

7-
function doFoo(string $s) {
7+
function doFoo1(string $s) {
88
assertType('string', $s);
99
}
1010

0 commit comments

Comments
 (0)