| 1 | <?php |
||
| 8 | class FFMpegServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Indicates if loading of the provider is deferred. |
||
| 12 | * |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $defer = true; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Bootstrap the application services. |
||
| 19 | */ |
||
| 20 | public function boot() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Register the application services. |
||
| 29 | */ |
||
| 30 | public function register() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * Get the services provided by the provider. |
||
| 41 | * |
||
| 42 | * @return array |
||
| 43 | */ |
||
| 44 | public function provides() |
||
| 48 | } |
||
| 49 |