1 | <?php namespace Syntax\SteamApi\Command; |
||
7 | class SteamAppGrabber extends Command { |
||
8 | |||
9 | /** |
||
10 | * The console command name. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $name = 'steam:applist'; |
||
15 | |||
16 | /** |
||
17 | * The console command description. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $description = 'Get all the steam apps and insert them into the database.'; |
||
22 | |||
23 | /** |
||
24 | * Create a new command instance. |
||
25 | */ |
||
26 | public function __construct() |
||
27 | { |
||
28 | parent::__construct(); |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Execute the console command. |
||
33 | * |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function fire() |
||
40 | |||
41 | /** |
||
42 | * Get the console command arguments. |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | protected function getArguments() |
||
52 | |||
53 | /** |
||
54 | * Get the console command options. |
||
55 | * |
||
56 | * @return array |
||
57 | */ |
||
58 | protected function getOptions() |
||
64 | |||
65 | } |
||
66 |