for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Reallyli\LaravelDeployer\Commands;
class DeployList extends BaseCommand
{
protected $signature = 'deploy:list
{namespace? : The namespace name}
{--raw : To output raw command list}
{--format=txt : The output format (txt, xml, json, or md)}
';
protected $description = 'Lists available tasks';
public function handle()
$this->dep('list');
}