for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yoanm\Behat3SymfonyExtension\Event;
use Symfony\Component\EventDispatcher\Event as BaseEvent;
abstract class AbstractEvent extends BaseEvent
{
/** @var string */
private $name;
/**
* @param string $name
*/
public function setName($name)
$this->name = $name;
}
* @return string
public function getName()
return $this->name;