| 1 | <?php |
||
| 14 | class PagarmeServiceProvider extends ServiceProvider |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Indicates if loading of the provider is deferred. |
||
| 19 | * |
||
| 20 | * @var bool |
||
| 21 | */ |
||
| 22 | protected $defer = true; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Bootstrap the application events. |
||
| 26 | */ |
||
| 27 | public function boot() |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Register the service provider. |
||
| 34 | */ |
||
| 35 | public function register() |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Get the services provided by the provider. |
||
| 42 | * |
||
| 43 | * @return array |
||
| 44 | */ |
||
| 45 | public function provides() |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Publishes and Merge configs. |
||
| 52 | */ |
||
| 53 | public function handleConfigs() |
||
| 57 | } |