Skip to content

Commit

Permalink
Update comment, use indented heredoc syntax (#1557)
Browse files Browse the repository at this point in the history
  • Loading branch information
maks-rafalko committed Aug 19, 2021
1 parent b07e053 commit 8cc8140
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Mutator/ProfileList.php
Expand Up @@ -465,7 +465,7 @@ final class ProfileList
'BCMath' => Mutator\Extensions\BCMath::class,
'MBString' => Mutator\Extensions\MBString::class,

// Internal only usage
// Internal usage only
'SyntaxError' => Mutator\SyntaxError::class,
];

Expand Down
Expand Up @@ -292,12 +292,11 @@ public function syntaxErrorOutputProvider(): iterable
yield ['Tests: 1 risked', false];

yield [
<<<TXT
'ParseError
<<<'TXT'
'ParseError
syntax error, unexpected ">"'
TXT
,
syntax error, unexpected ">"'
TXT,
true,
];
}
Expand Down

0 comments on commit 8cc8140

Please sign in to comment.