registerJournal(); } private function registerJournal() { $this->app->bind( 'FireflyIII\Crud\Split\JournalInterface', function (Application $app, array $arguments) { if (!isset($arguments[0]) && $app->auth->check()) { return app('FireflyIII\Crud\Split\Journal', [auth()->user()]); } if (!isset($arguments[0]) && !$app->auth->check()) { throw new FireflyException('There is no user present.'); } return app('FireflyIII\Crud\Split\Journal', $arguments); } ); } }