mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 05:29:12 -06:00
50 lines
1.2 KiB
PHP
50 lines
1.2 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Providers;
|
||
|
|
||
|
use Auth;
|
||
|
use FireflyIII\Exceptions\FireflyException;
|
||
|
use Illuminate\Foundation\Application;
|
||
|
use Illuminate\Support\ServiceProvider;
|
||
|
|
||
|
/**
|
||
|
* Class AccountServiceProvider
|
||
|
*
|
||
|
* @package FireflyIII\Providers
|
||
|
*/
|
||
|
class AccountServiceProvider 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\Account\AccountRepositoryInterface',
|
||
|
function (Application $app, array $arguments) {
|
||
|
if (!isset($arguments[0]) && Auth::check()) {
|
||
|
return app('FireflyIII\Repositories\Account\AccountRepository', [Auth::user()]);
|
||
|
} else {
|
||
|
if (!isset($arguments[0]) && !Auth::check()) {
|
||
|
throw new FireflyException('There is no user present.');
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return app('FireflyIII\Repositories\Account\AccountRepository', $arguments);
|
||
|
}
|
||
|
);
|
||
|
}
|
||
|
}
|