1 | <?php |
||
9 | class InstallCommand extends Command |
||
10 | { |
||
11 | use DetectsApplicationNamespace; |
||
12 | |||
13 | /** |
||
14 | * The name and signature of the console command. |
||
15 | * |
||
16 | * @var string |
||
17 | */ |
||
18 | protected $signature = 'blog:install'; |
||
19 | |||
20 | /** |
||
21 | * The console command description. |
||
22 | * |
||
23 | * @var string |
||
24 | */ |
||
25 | protected $description = 'Install all of the necessary blog resources'; |
||
26 | |||
27 | /** |
||
28 | * Execute the console command. |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function handle() |
||
43 | |||
44 | /** |
||
45 | * Register the Canvas service provider in the application configuration file. |
||
46 | * |
||
47 | * @return void |
||
48 | */ |
||
49 | private function registerCanvasServiceProvider() |
||
78 | } |
||
79 |