for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Bootstrap;
use Core\Bootstrap\BootstrapInterface;
use Core\Event\EventManager;
class EventListenerBootstrap implements BootstrapInterface
{
public function boot(array $env)
EventManager::registerListener($env['event']);
}