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


Hang on, we reloading big blames...
<?php
namespace GitList\Provider;
use GitList\Component\Git\Client;
use Silex\Application; use Silex\ServiceProviderInterface; class GitServiceProvider implements ServiceProviderInterface { /** * Register the Git\Client on the Application ServiceProvider
* * @param Application $app Silex Application * @return Git\Client Instance of the Git\Client
*/ public function register(Application $app) { $app['git'] = function () use ($app) {
$options['path'] = $app['git.client']; $options['hidden'] = $app['git.hidden']; return new Client($options);
}; }
public function boot(Application $app) { }
}