Skip to content

Commit e0ae791

Browse files
committed
change order of boot and register method
1 parent ab1e9f8 commit e0ae791

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/Providers/AppServiceProvider.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,21 @@
77
class AppServiceProvider extends ServiceProvider
88
{
99
/**
10-
* Bootstrap any application services.
10+
* Register any application services.
1111
*
1212
* @return void
1313
*/
14-
public function boot()
14+
public function register()
1515
{
1616
//
1717
}
1818

1919
/**
20-
* Register any application services.
20+
* Bootstrap any application services.
2121
*
2222
* @return void
2323
*/
24-
public function register()
24+
public function boot()
2525
{
2626
//
2727
}

0 commit comments

Comments
 (0)