for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tartana\Event;
use Symfony\Component\EventDispatcher\Event;
class CommandEvent extends Event
{
private $command = null;
public function __construct ($command)
$this->command = $command;
}
public function getCommand ()
return $this->command;
public function setCommand ($command)