1 | <?php namespace Arcanesoft\Media\Providers; |
||
12 | class CommandServiceProvider extends ServiceProvider |
||
13 | { |
||
14 | /* ------------------------------------------------------------------------------------------------ |
||
15 | | Properties |
||
16 | | ------------------------------------------------------------------------------------------------ |
||
17 | */ |
||
18 | /** |
||
19 | * Console commands. |
||
20 | * |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $commands = [ |
||
24 | Console\PublishCommand::class, |
||
25 | ]; |
||
26 | |||
27 | /* ------------------------------------------------------------------------------------------------ |
||
28 | | Main Functions |
||
29 | | ------------------------------------------------------------------------------------------------ |
||
30 | */ |
||
31 | /** |
||
32 | * Register the service provider. |
||
33 | */ |
||
34 | 8 | public function register() |
|
38 | |||
39 | /** |
||
40 | * Get the provided commands. |
||
41 | * |
||
42 | * @return array |
||
43 | */ |
||
44 | 2 | public function provides() |
|
48 | } |
||
49 |