We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19c04bc commit 755d81cCopy full SHA for 755d81c
1 file changed
rules-tests/Unambiguous/Rector/Class_/RemoveReturnThisFromSetterClassMethodRector/Fixture/fixture.php.inc
@@ -4,11 +4,11 @@ namespace Rector\Tests\Unambiguous\Rector\Class_\RemoveReturnThisFromSetterClass
4
5
final class SomeClass
6
{
7
- private string $name;
+ private string $nameValue;
8
9
public function setName(string $name): self
10
11
- $this->name = $name;
+ $this->nameValue = $name;
12
13
return $this;
14
}
@@ -22,11 +22,11 @@ namespace Rector\Tests\Unambiguous\Rector\Class_\RemoveReturnThisFromSetterClass
22
23
24
25
26
27
public function setName(string $name): void
28
29
30
31
32
0 commit comments