gist/app/bootstrap.php.d/50-git.php

10 lines
112 B
PHP
Raw Normal View History

2015-05-05 22:04:04 +02:00
<?php
use GitWrapper\GitWrapper;
$app['git'] = function ($app) {
echo "ok";
return new GitWrapper();
};