firefly-iii/app/Providers/CategoryServiceProvider.php

61 lines
1.3 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\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(
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
}
return $repository;
2016-03-03 01:50:17 -06:00
}
);
2016-03-03 01:50:17 -06:00
}
}