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\View;
use Pimple\Container; use Pimple\ServiceProviderInterface;
class ViewUtilServiceProvider implements ServiceProviderInterface {
public function register(Container $container)
{
$container['util.view'] = function () { return new View(); };
} }