| 1 | <?php namespace Cornford\Bencoded\Providers; |
||
| 6 | class BencodedServiceProvider extends ServiceProvider |
||
| 7 | { |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Indicates if loading of the provider is deferred. |
||
| 11 | * |
||
| 12 | * @var bool |
||
| 13 | */ |
||
| 14 | protected $defer = true; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * Bootstrap the application events. |
||
| 18 | * |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public function boot() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Register the service provider. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function register() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Get the services provided by the provider. |
||
| 41 | * |
||
| 42 | * @return string[] |
||
| 43 | */ |
||
| 44 | public function provides() |
||
| 48 | } |
||
| 49 |