update final for sandframework site-web with git-folder download

This commit is contained in:
Emmanuel ROY 2021-01-06 20:28:30 +01:00 committed by Emmanuel ROY
commit 2f89c46410
2222 changed files with 276304 additions and 130 deletions

View file

@ -0,0 +1,21 @@
<?php
namespace GitList\Provider;
use GitList\Util\View;
use Silex\Application;
use Silex\ServiceProviderInterface;
class ViewUtilServiceProvider implements ServiceProviderInterface
{
public function register(Application $app)
{
$app['util.view'] = function () {
return new View();
};
}
public function boot(Application $app)
{
}
}