Skip to content

Commit

Permalink
Improve compatibility with PHPStan 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Oct 14, 2021
1 parent 54ed35b commit 9eb88c9
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -36,7 +36,7 @@ public function testRule(): void
13,
],
[
'Call to method PHPUnit\Framework\Assert::assertSame() with array(\'a\', \'b\') and array(1, 2) will always evaluate to false.',
'Call to method PHPUnit\Framework\Assert::assertSame() with array{\'a\', \'b\'} and array{1, 2} will always evaluate to false.',
14,
],
[
Expand All @@ -56,7 +56,7 @@ public function testRule(): void
47,
],
[
'Call to method PHPUnit\Framework\Assert::assertSame() with array(\'a\', 2, 3.0) and array(\'a\', 1) will always evaluate to false.',
'Call to method PHPUnit\Framework\Assert::assertSame() with array{\'a\', 2, 3.0} and array{\'a\', 1} will always evaluate to false.',
52,
],
]);
Expand Down

0 comments on commit 9eb88c9

Please sign in to comment.