1 | <?php |
||
8 | class UpdateCommand extends Installation\Command |
||
9 | { |
||
10 | /** |
||
11 | * The name and signature of the console command. |
||
12 | * |
||
13 | * @var string |
||
14 | */ |
||
15 | protected $signature = 'sleepingowl:update'; |
||
16 | |||
17 | /** |
||
18 | * The console command description. |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description = 'Update the SleepingOwl Admin package'; |
||
22 | |||
23 | /** |
||
24 | * Execute the console command. |
||
25 | * |
||
26 | * @param Filesystem $files |
||
27 | */ |
||
28 | public function fire(Filesystem $files) |
||
32 | |||
33 | /** |
||
34 | * @param Filesystem $files |
||
35 | */ |
||
36 | public function handle(Filesystem $files) |
||
40 | |||
41 | protected function runInstaller() |
||
48 | } |
||
49 |