Skip to content

Commit b0d8ee0

Browse files
committed
fix collision
1 parent f3672dd commit b0d8ee0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/PHPStan/Rules/Methods/CallMethodsRuleTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3066,13 +3066,13 @@ public function testBug9951(): void
30663066
]);
30673067
}
30683068

3069-
public function testBug9908(): void
3069+
public function testBug9908b(): void
30703070
{
30713071
$this->checkThisOnly = false;
30723072
$this->checkNullables = true;
30733073
$this->checkUnionTypes = true;
30743074
$this->checkExplicitMixed = true;
3075-
$this->analyse([__DIR__ . '/data/bug-9908.php'], []);
3075+
$this->analyse([__DIR__ . '/data/bug-9908b.php'], []);
30763076
}
30773077

30783078
}

tests/PHPStan/Rules/Methods/data/bug-9908.php renamed to tests/PHPStan/Rules/Methods/data/bug-9908b.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Bug9908;
3+
namespace Bug9908b;
44

55
class HelloWorld
66
{

0 commit comments

Comments
 (0)