app->bind( 'FireflyIII\Repositories\ExportJob\ExportJobRepositoryInterface', function (Application $app, array $arguments) { if (!isset($arguments[0]) && $app->auth->check()) { return app('FireflyIII\Repositories\ExportJob\ExportJobRepository', [$app->auth->user()]); } if (!isset($arguments[0]) && !$app->auth->check()) { throw new FireflyException('There is no user present.'); } return app('FireflyIII\Repositories\ExportJob\ExportJobRepository', $arguments); } ); } /** * Register the application services. * * @return void */ public function register() { // } }