| 1 | <?php |
||
| 10 | class BackupServiceProvider extends ServiceProvider |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Indicates if loading of the provider is deferred. |
||
| 14 | * |
||
| 15 | * @var bool |
||
| 16 | */ |
||
| 17 | protected $defer = true; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Bootstrap the application events. |
||
| 21 | * |
||
| 22 | * @return void |
||
| 23 | */ |
||
| 24 | public function boot(): void |
||
| 29 | |||
| 30 | /** |
||
| 31 | * Register the service provider. |
||
| 32 | * |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | public function register(): void |
||
| 68 | |||
| 69 | /** |
||
| 70 | * Get the services provided by the provider. |
||
| 71 | * |
||
| 72 | * @return string[] |
||
| 73 | */ |
||
| 74 | public function provides(): array |
||
| 78 | } |
||
| 79 |