| 1 | <?php |
||
| 8 | class PreviewServiceProvider extends LaravelServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Indicates if loading of the provider is deferred. |
||
| 12 | * |
||
| 13 | * @var bool |
||
| 14 | */ |
||
| 15 | protected $defer = false; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Bootstrap the application events. |
||
| 19 | * |
||
| 20 | * @return void |
||
| 21 | */ |
||
| 22 | public function boot() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Register the service provider. |
||
| 43 | * |
||
| 44 | * @return void |
||
| 45 | */ |
||
| 46 | public function register() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Check if the package is enabled. |
||
| 53 | * |
||
| 54 | * @return bool |
||
| 55 | */ |
||
| 56 | public static function isEnabled() |
||
| 60 | } |
||
| 61 |