Bolt\Provider\EventListenerServiceProvider::register PHP Method

register() public method

public register ( Silex\Application $app )
$app Silex\Application
    public function register(Application $app)
    {
        $app['listener.access_control'] = $app->share(function ($app) {
            return new Listener\AccessControlListener($app['filesystem'], $app['session.storage'], $app['storage.lazy']);
        });
        $app['listener.general'] = $app->share(function ($app) {
            return new Listener\GeneralListener($app);
        });
        $app['listener.exception'] = $app->share(function ($app) {
            return new Listener\ExceptionListener($app['config'], $app['controller.exception'], $app['logger.system']);
        });
        $app['listener.not_found'] = $app->share(function ($app) {
            return new Listener\NotFoundListener($app['config']->get('theme/notfound') ?: $app['config']->get('general/notfound'), $app['storage.legacy'], $app['templatechooser'], $app['twig'], $app['render']);
        });
        /*
         * Creating the actual url generator flushes all controllers.
         * We aren't ready for this since controllers.mount event hasn't fired yet.
         * RedirectListener doesn't use the url generator until kernel.response
         * (way after controllers have been added).
         */
        $app['listener.redirect'] = $app->share(function ($app) {
            return new Listener\RedirectListener($app['session'], $app['url_generator.lazy'], $app['users'], $app['access_control']);
        });
        $app['listener.flash_logger'] = $app->share(function ($app) {
            $debug = $app['debug'] && $app['config']->get('general/debug_show_loggedoff', false);
            $profilerPrefix = isset($app['profiler.mount_prefix']) ? $app['profiler.mount_prefix'] : null;
            return new Listener\FlashLoggerListener($app['logger.flash'], $debug, $profilerPrefix);
        });
        $app['listener.pager'] = $app->share(function ($app) {
            return new Listener\PagerListener($app['pager']);
        });
        $app['listener.snippet'] = $app->share(function ($app) {
            return new Listener\SnippetListener($app['asset.queue.snippet'], $app['canonical'], $app['asset.packages'], $app['config'], $app['render']);
        });
        $app['listener.zone_guesser'] = $app->share(function ($app) {
            return new Listener\ZoneGuesser($app);
        });
    }
EventListenerServiceProvider