1 | <?php namespace Arcanesoft\Blog\Providers; |
||
11 | class CommandServiceProvider extends ServiceProvider |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Main Functions |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * Register the service provider. |
||
19 | */ |
||
20 | public function register() |
||
27 | |||
28 | /** |
||
29 | * Get the provided commands. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function provides() |
||
40 | |||
41 | /* ------------------------------------------------------------------------------------------------ |
||
42 | | Command Functions |
||
43 | | ------------------------------------------------------------------------------------------------ |
||
44 | */ |
||
45 | /** |
||
46 | * Register the publish command. |
||
47 | */ |
||
48 | private function registerPublishCommand() |
||
57 | |||
58 | /** |
||
59 | * Register the setup command. |
||
60 | */ |
||
61 | private function registerSetupCommand() |
||
70 | } |
||
71 |