| 1 | <?php namespace Cornford\Logical\Providers; |
||
| 6 | class LogicalServiceProvider extends ServiceProvider { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * Indicates if loading of the provider is deferred. |
||
| 10 | * |
||
| 11 | * @var bool |
||
| 12 | */ |
||
| 13 | protected $defer = true; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Bootstrap the application events. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function boot() |
||
| 21 | { |
||
| 22 | // $this->package('cornford/logical'); |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Register the service provider. |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function register() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Get the services provided by the provider. |
||
| 40 | * |
||
| 41 | * @return string[] |
||
| 42 | */ |
||
| 43 | public function provides() |
||
| 47 | |||
| 48 | } |
||
| 49 |