Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | class AppServiceProvider extends ServiceProvider |
||
35 | { |
||
36 | /** |
||
37 | * Register any application services. |
||
38 | * |
||
39 | * @return void |
||
40 | */ |
||
41 | public function register(): void |
||
42 | { |
||
43 | $this->app->bind( |
||
44 | 'steam', |
||
45 | static function () { |
||
46 | return new Steam; |
||
47 | } |
||
48 | ); |
||
49 | } |
||
50 | |||
51 | /** |
||
52 | * Bootstrap any application services. |
||
53 | * |
||
54 | * @return void |
||
55 | */ |
||
56 | public function boot(): void |
||
58 | // |
||
59 | } |
||
61 |