PhpSpec\Console\ContainerAssembler::setupSubscribers PHP Method

setupSubscribers() private method

private setupSubscribers ( IndexedServiceContainer $container )
$container PhpSpec\ServiceContainer\IndexedServiceContainer
    private function setupSubscribers(IndexedServiceContainer $container)
    {
        $container->addConfigurator(function (IndexedServiceContainer $c) {
            array_map(array($c->get('event_dispatcher'), 'addSubscriber'), $c->getByTag('event_dispatcher.listeners'));
        });
    }