| 1 | <?php namespace Arcanedev\LaravelTracker\Providers; |
||
| 11 | class CommandServiceProvider extends ServiceProvider |
||
| 12 | { |
||
| 13 | /* ------------------------------------------------------------------------------------------------ |
||
| 14 | | Properties |
||
| 15 | | ------------------------------------------------------------------------------------------------ |
||
| 16 | */ |
||
| 17 | protected $commands = [ |
||
| 18 | // |
||
| 19 | ]; |
||
| 20 | |||
| 21 | /* ------------------------------------------------------------------------------------------------ |
||
| 22 | | Main Functions |
||
| 23 | | ------------------------------------------------------------------------------------------------ |
||
| 24 | */ |
||
| 25 | /** |
||
| 26 | * Register the commands. |
||
| 27 | */ |
||
| 28 | 36 | public function register() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Get the services provided by the provider. |
||
| 35 | * |
||
| 36 | * @return array |
||
| 37 | */ |
||
| 38 | public function provides() |
||
| 42 | } |
||
| 43 |