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

10 lines
115 B
PHP
Raw Normal View History

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