for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ivol\EventDispatcher;
use ivol\ExecutionContext;
use Symfony\Component\EventDispatcher\Event;
class BeforeExecuteEvent extends Event
{
const EVENT_NAME = 'exec-wrapper.before_execute';
/** @var ExecutionContext */
private $params;
/**
* @param ExecutionContext $params
*/
public function __construct(ExecutionContext $params)
$this->params = $params;
}
* @return ExecutionContext
public function getParams()
return $this->params;
public function setParams($params)