Skip to content

Commit

Permalink
[ci-review] Rector Rectify
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Feb 1, 2025
1 parent 778070b commit 615d522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules-tests/Naming/Naming/PropertyNamingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function testGetExpectedNameFromMethodName(string $methodName, ?string $e
$expectedName = $this->propertyNaming->getExpectedNameFromMethodName($methodName);

if ($expectedPropertyName === null) {
$this->assertNull($expectedName);
$this->assertNotInstanceOf(ExpectedName::class, $expectedName);
} else {
$this->assertInstanceOf(ExpectedName::class, $expectedName);
$this->assertSame($expectedPropertyName, $expectedName->getSingularized());
Expand Down

0 comments on commit 615d522

Please sign in to comment.