Skip to content

Commit e7dab26

Browse files
authored
[automated] Apply Coding Standard (#7993)
Co-authored-by: TomasVotruba <924196+TomasVotruba@users.noreply.github.com>
1 parent 30a116f commit e7dab26

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

rules-tests/CodeQuality/Rector/CallLike/AddNameToBooleanArgumentRector/AddNameToBooleanArgumentRectorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function test(string $filePath): void
1818

1919
public static function provideData(): Iterator
2020
{
21-
return AddNameToBooleanArgumentRectorTest::yieldFilesFromDirectory(__DIR__ . '/Fixture');
21+
return self::yieldFilesFromDirectory(__DIR__ . '/Fixture');
2222
}
2323

2424
public function provideConfigFilePath(): string

rules/Php81/NodeManipulator/NullToStrictStringIntConverter.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ private function isPropertyFetchOnClassWithMagicGet(Expr $expr): bool
176176
return false;
177177
}
178178

179-
return $this->reflectionProvider->getClass($varType->getClassName())->hasMethod('__get');
179+
return $this->reflectionProvider->getClass($varType->getClassName())
180+
->hasMethod('__get');
180181
}
181182

182183
private function isValidUnionType(Type $type): bool

0 commit comments

Comments
 (0)