for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Syntax\SteamApi\Command;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
class SteamAppGrabber extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'steam:applist';
* The console command description.
protected $description = 'Get all the steam apps and insert them into the database.';
* Create a new command instance.
public function __construct()
{
parent::__construct();
}
* Execute the console command.
* @return mixed
public function fire()
//
* Get the console command arguments.
* @return array
protected function getArguments()
return array(
array('example', InputArgument::REQUIRED, 'An example argument.'),
);
* Get the console command options.
protected function getOptions()
array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),