Skip to content

Commit 2e1f7e8

Browse files
Fixed code-style
1 parent 89bc5ef commit 2e1f7e8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

app/Services/Template.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,22 @@
99
class Template
1010
{
1111
protected static ?string $localeStub = null;
12+
1213
protected static ?string $pageStub = null;
1314

1415
public static function locale(string $code, array $locale): string
1516
{
1617
return Str::replaceFormat(static::localeStub(), [
17-
'code' => $code,
18+
'code' => $code,
1819
'locale' => $locale['name'],
19-
'native' => Str::title($locale['native'])
20+
'native' => Str::title($locale['native']),
2021
], '{{%s}}');
2122
}
2223

2324
public static function page(array $locales): string
2425
{
2526
return Str::replaceFormat(static::pageStub(), [
26-
'content' => implode(PHP_EOL . PHP_EOL, $locales)
27+
'content' => implode(PHP_EOL . PHP_EOL, $locales),
2728
], '{{%s}}');
2829
}
2930

0 commit comments

Comments
 (0)