for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Reallyli\LaravelDeployer\Commands;
class Ssh extends BaseCommand
{
protected $signature = 'ssh {hostname? : Host to connect to}';
protected $description = 'Connect to host through ssh';
public function handle()
$this->dep('ssh');
}