firefly-iii/app/Providers/CategoryServiceProvider.php

61 lines
1.5 KiB
PHP
Raw Normal View History

2016-03-03 01:50:17 -06:00
<?php
/**
* CategoryServiceProvider.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2016-05-20 01:57:45 -05:00
declare(strict_types = 1);
2016-03-03 01:50:17 -06:00
namespace FireflyIII\Providers;
use FireflyIII\Exceptions\FireflyException;
use Illuminate\Foundation\Application;
use Illuminate\Support\ServiceProvider;
/**
* Class CategoryServiceProvider
*
* @package FireflyIII\Providers
*/
class CategoryServiceProvider 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\Category\CategoryRepositoryInterface',
function (Application $app, array $arguments) {
2016-04-27 03:38:51 -05:00
if (!isset($arguments[0]) && $app->auth->check()) {
2016-07-23 14:37:06 -05:00
return app('FireflyIII\Repositories\Category\CategoryRepository', [auth()->user()]);
2016-04-27 22:50:29 -05:00
}
if (!isset($arguments[0]) && !$app->auth->check()) {
throw new FireflyException('There is no user present.');
2016-03-03 01:50:17 -06:00
}
return app('FireflyIII\Repositories\Category\CategoryRepository', $arguments);
}
);
2016-03-03 01:50:17 -06:00
}
}