for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Robo\Common;
use Robo\Robo;
use Robo\Task\BaseTask;
class ProcessExecutor extends BaseTask {
use ExecTrait;
/** @var string */
protected $command;
public function __construct($command) {
$this->command = $command;
$this->logger = Robo::logger();
}
public function getCommand() {
return $this->command;