RSS Git Download  Clone
Raw View History
Blames found: 7 Mode: php Binary: false


Hang on, we reloading big blames...
<?php namespace GitList\Provider; use GitList\Util\Routing;
use Pimple\Container; use Pimple\ServiceProviderInterface;
class RoutingUtilServiceProvider implements ServiceProviderInterface {
public function register(Container $container)
{
$container['util.routing'] = function () use ($container) { return new Routing($container); };
} }