| 1 | <?php namespace App\Providers; |
||
| 5 | class FileStreamServiceProvider extends ServiceProvider |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Deferring the loading of a provider improves performance of the application, |
||
| 9 | * since it is not loaded from the filesystem on every request. |
||
| 10 | * |
||
| 11 | * @var bool |
||
| 12 | */ |
||
| 13 | protected $defer = true; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Register any application services. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | 19 | public function register() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Get the services provided by the provider. |
||
| 27 | * |
||
| 28 | * @return array |
||
| 29 | */ |
||
| 30 | public function provides() |
||
| 34 | } |
||
| 35 |