Skip to content

Commit 4fb1642

Browse files
committed
fix cs
1 parent 284078f commit 4fb1642

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/PHPStan/Analyser/Bug13813IntegrationTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ public function testBug13813(): void
2626

2727
$this->assertSame(
2828
'Warning: Undefined variable $x',
29-
$analyzerResult->getAllPhpErrors()[0]->getMessage()
29+
$analyzerResult->getAllPhpErrors()[0]->getMessage(),
3030
);
3131
$this->assertSame(
3232
'Warning: Undefined variable $x',
33-
$analyzerResult->getAllPhpErrors()[1]->getMessage()
33+
$analyzerResult->getAllPhpErrors()[1]->getMessage(),
3434
);
3535
}
3636

0 commit comments

Comments
 (0)