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