for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Mistletoe;
/**
* Class Command
* @package Mistletoe
*/
class Command
{
private $command;
public function __construct($command)
$this->command = $command;
}
* @return mixed
public function getCommand()
return $this->command;
* @param mixed $command
public function setCommand($command)