| 1 | <?php namespace Yani\Coinbase; |
||
| 6 | class CoinbaseServiceProvider extends ServiceProvider { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Indicates if loading of the provider is deferred. |
||
| 10 | * |
||
| 11 | * @var bool |
||
| 12 | */ |
||
| 13 | protected $defer = false; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Bootstrap the application events. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function boot() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Register the service provider. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function register() |
||
| 44 | |||
| 45 | /** |
||
| 46 | * Get the services provided by the provider. |
||
| 47 | * |
||
| 48 | * @return array |
||
| 49 | */ |
||
| 50 | public function provides() |
||
| 54 | } |
||
| 55 |