1 | <?php |
||
8 | class SteamApiServiceProvider extends ServiceProvider |
||
9 | { |
||
10 | /** |
||
11 | * Indicates if loading of the provider is deferred. |
||
12 | * |
||
13 | * @var bool |
||
14 | */ |
||
15 | protected $defer = false; |
||
16 | |||
17 | /** |
||
18 | * Bootstrap the application events. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function boot() |
||
26 | |||
27 | /** |
||
28 | * Register the service provider. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function register() |
||
40 | |||
41 | /** |
||
42 | * Register the alias for package. |
||
43 | * |
||
44 | * @return void |
||
45 | */ |
||
46 | protected function registerAlias() |
||
53 | |||
54 | /** |
||
55 | * Get the services provided by the provider. |
||
56 | * |
||
57 | * @return string[] |
||
58 | */ |
||
59 | public function provides() |
||
63 | } |
||
64 |