2016-03-03 01:50:17 -06:00
|
|
|
<?php
|
2016-05-20 05:41:23 -05:00
|
|
|
/**
|
|
|
|
* CategoryServiceProvider.php
|
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
|
|
|
*
|
2016-10-04 23:52:15 -05:00
|
|
|
* 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 05:41:23 -05:00
|
|
|
*/
|
|
|
|
|
2016-05-20 01:57:45 -05:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2016-03-03 01:50:17 -06:00
|
|
|
|
|
|
|
namespace FireflyIII\Providers;
|
|
|
|
|
2017-01-30 10:19:51 -06:00
|
|
|
use FireflyIII\Repositories\Category\CategoryRepository;
|
|
|
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
2016-03-03 01:50:17 -06:00
|
|
|
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(
|
2017-01-30 10:19:51 -06:00
|
|
|
CategoryRepositoryInterface::class,
|
|
|
|
function (Application $app) {
|
|
|
|
/** @var CategoryRepository $repository */
|
|
|
|
$repository = app(CategoryRepository::class);
|
|
|
|
if ($app->auth->check()) {
|
|
|
|
$repository->setUser(auth()->user());
|
2016-03-03 01:50:17 -06:00
|
|
|
}
|
|
|
|
|
2017-01-30 10:19:51 -06:00
|
|
|
return $repository;
|
2016-03-03 01:50:17 -06:00
|
|
|
}
|
|
|
|
);
|
2016-04-01 06:23:12 -05:00
|
|
|
|
2016-03-03 01:50:17 -06:00
|
|
|
}
|
|
|
|
}
|