Skip to content

Commit f4ba975

Browse files
committed
Format constructor and package registration methods for consistency
1 parent dac6cfb commit f4ba975

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/LaravelShortcodePlus.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222

2323
final class LaravelShortcodePlus
2424
{
25-
public function __construct(protected string $content = '') {}
25+
public function __construct(protected string $content = '')
26+
{
27+
}
2628

2729
public static function source(string $source): LaravelShortcodePlus
2830
{

src/LaravelShortcodePlusServiceProvider.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ public function configurePackage(Package $package): void
4343
->hasMigration('create_laravel-shortcode-plus_table');
4444
}
4545

46-
public function packageRegistered() {}
46+
public function packageRegistered()
47+
{
48+
}
4749

4850
public function packageBooted(): void
4951
{

0 commit comments

Comments
 (0)