mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-11-03 20:55:05 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * BudgetServiceProvider.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.
 | 
						|
 */
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
 | 
						|
namespace FireflyIII\Providers;
 | 
						|
 | 
						|
use FireflyIII\Repositories\Budget\BudgetRepository;
 | 
						|
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
 | 
						|
use Illuminate\Foundation\Application;
 | 
						|
use Illuminate\Support\ServiceProvider;
 | 
						|
 | 
						|
/**
 | 
						|
 * Class BudgetServiceProvider
 | 
						|
 *
 | 
						|
 * @package FireflyIII\Providers
 | 
						|
 */
 | 
						|
class BudgetServiceProvider extends ServiceProvider
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Bootstrap the application services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function boot()
 | 
						|
    {
 | 
						|
        //
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Register the application services.
 | 
						|
     *
 | 
						|
     * @return void
 | 
						|
     */
 | 
						|
    public function register()
 | 
						|
    {
 | 
						|
        $this->app->bind(
 | 
						|
            BudgetRepositoryInterface::class,
 | 
						|
            function (Application $app) {
 | 
						|
                /** @var BudgetRepositoryInterface $repository */
 | 
						|
                $repository = app(BudgetRepository::class);
 | 
						|
                if ($app->auth->check()) {
 | 
						|
                    $repository->setUser(auth()->user());
 | 
						|
                }
 | 
						|
 | 
						|
                return $repository;
 | 
						|
            }
 | 
						|
        );
 | 
						|
    }
 | 
						|
}
 |