@@ -7,26 +7,26 @@ |
||
7 | 7 | |
8 | 8 | class AppServiceProvider extends ServiceProvider |
9 | 9 | { |
10 | - /** |
|
11 | - * Bootstrap any application services. |
|
12 | - */ |
|
13 | - public function boot() |
|
14 | - { |
|
15 | - // |
|
16 | - } |
|
10 | + /** |
|
11 | + * Bootstrap any application services. |
|
12 | + */ |
|
13 | + public function boot() |
|
14 | + { |
|
15 | + // |
|
16 | + } |
|
17 | 17 | |
18 | - /** |
|
19 | - * Register any application services. |
|
20 | - */ |
|
21 | - public function register() |
|
22 | - { |
|
23 | - $this->app->bind( |
|
24 | - \Illuminate\Contracts\Auth\Registrar::class, |
|
25 | - Registrar::class |
|
26 | - ); |
|
18 | + /** |
|
19 | + * Register any application services. |
|
20 | + */ |
|
21 | + public function register() |
|
22 | + { |
|
23 | + $this->app->bind( |
|
24 | + \Illuminate\Contracts\Auth\Registrar::class, |
|
25 | + Registrar::class |
|
26 | + ); |
|
27 | 27 | |
28 | - if ($this->app->environment('local', 'testing')) { |
|
29 | - $this->app->register(\Laravel\Dusk\DuskServiceProvider::class); |
|
30 | - } |
|
31 | - } |
|
28 | + if ($this->app->environment('local', 'testing')) { |
|
29 | + $this->app->register(\Laravel\Dusk\DuskServiceProvider::class); |
|
30 | + } |
|
31 | + } |
|
32 | 32 | } |