Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Apr 29, 2024
1 parent 83e1f56 commit 8a65c4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Translation/TranslationTranslatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ public function testTagReplacements()
$t->get(
'We have some nice <docs-link>documentation</docs-link>',
[
"docs-link" => fn ($children) => "<a href=\"https://laravel.com/docs\">$children</a>"
'docs-link' => fn ($children) => "<a href=\"https://laravel.com/docs\">$children</a>",
]
)
);
Expand All @@ -287,7 +287,7 @@ public function testTagReplacementsHandleMultipleOfSameTag()
$t->get(
'<bold-this>bold</bold-this> something else <bold-this>also bold</bold-this>',
[
"bold-this" => fn ($children) => "<b>$children</b>"
'bold-this' => fn ($children) => "<b>$children</b>",
]
)
);
Expand Down

0 comments on commit 8a65c4d

Please sign in to comment.