for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* event-symfony-event-dispatcher (https://github.com/phpgears/event-symfony-event-dispatcher).
* Event bus with Symfony Event Dispatcher.
*
* @license MIT
* @link https://github.com/phpgears/event-symfony-event-dispatcher
* @author Julián Gutiérrez <[email protected]>
*/
declare(strict_types=1);
namespace Gears\Event\Symfony;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
interface EventDispatcher extends EventDispatcherInterface
{
}