for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Solidifier;
abstract class Event extends \Symfony\Component\EventDispatcher\Event
{
const
EVENT_NAME = 'generic.event';
public function getEventName()
return static::EVENT_NAME;
}