for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package EBloodBank
* @since 1.6
*/
namespace EBloodBank;
use Symfony\Component\EventDispatcher\EventDispatcher;
class EventManager
{
* @var \Symfony\Component\EventDispatcher\EventDispatcher
protected $eventDispatcher;
public function __construct()
$this->eventDispatcher = new EventDispatcher();
}
* @return \Symfony\Component\EventDispatcher\EventDispatcher
public function getEventDispatcher()
return $this->eventDispatcher;