Skip to content

Commit f4e3d82

Browse files
phpstan-botclaude
authored andcommitted
Use single quotes for strings without special escape sequences in CallCallablesRuleTest
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 085f943 commit f4e3d82

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/PHPStan/Rules/Functions/CallCallablesRuleTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,15 +382,15 @@ public function testBug4510(): void
382382
16,
383383
],
384384
[
385-
"Trying to invoke array{Bug4510\HelloWorld, string} but it might not be a callable.",
385+
'Trying to invoke array{Bug4510\HelloWorld, string} but it might not be a callable.',
386386
27,
387387
],
388388
[
389389
"Trying to invoke array{'Bug4510\\\HelloWorld', string} but it might not be a callable.",
390390
46,
391391
],
392392
[
393-
"Trying to invoke array{Bug4510\HelloWorld, string} but it might not be a callable.",
393+
'Trying to invoke array{Bug4510\HelloWorld, string} but it might not be a callable.',
394394
90,
395395
],
396396
]);

0 commit comments

Comments
 (0)