firefly-iii/app/Providers/BillServiceProvider.php

49 lines
1.2 KiB
PHP
Raw Normal View History

2016-03-03 01:40:25 -06:00
<?php
namespace FireflyIII\Providers;
use FireflyIII\Exceptions\FireflyException;
use Illuminate\Foundation\Application;
2016-03-03 01:40:25 -06:00
use Illuminate\Support\ServiceProvider;
/**
* Class BillServiceProvider
*
* @package FireflyIII\Providers
*/
2016-03-03 01:40:25 -06:00
class BillServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register the application services.
*
* @return void
*/
public function register()
{
$this->app->bind(
'FireflyIII\Repositories\Bill\BillRepositoryInterface',
function (Application $app, array $arguments) {
2016-04-27 03:38:51 -05:00
if (!isset($arguments[0]) && $app->auth->check()) {
return app('FireflyIII\Repositories\Bill\BillRepository', [$app->auth->user()]);
2016-03-03 01:40:25 -06:00
} else {
2016-04-27 03:38:51 -05:00
if (!isset($arguments[0]) && !$app->auth->check()) {
2016-03-03 01:40:25 -06:00
throw new FireflyException('There is no user present.');
}
}
return app('FireflyIII\Repositories\Bill\BillRepository', $arguments);
}
);
}
}