for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace jlourenco\support\Commands;
use Illuminate\Console\Command;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use File;
class SetupCommand extends Command {
/**
* The console command name.
*
* @var string
*/
protected $name = 'jlourenco:setup';
* The console command description.
protected $description = 'Command to setup all the requirements for the jlourenco packages';
* Create a new command instance.
* @return void
@return
Adding a @return annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.
Please refer to the PHP core documentation on constructors.
public function __construct()
{
parent::__construct();
}
* Execute the console command.
* @return mixed
public function fire()
$this->info('Testing command.');
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.