New converters for #180 (Category and some other stuff)

This commit is contained in:
James Cole
2016-04-01 13:23:12 +02:00
parent 429ef80fb9
commit 5e78cc02bd
10 changed files with 78 additions and 18 deletions

View File

@@ -45,5 +45,21 @@ class CategoryServiceProvider extends ServiceProvider
return app('FireflyIII\Repositories\Category\CategoryRepository', $arguments);
}
);
$this->app->bind(
'FireflyIII\Repositories\Category\SingleCategoryRepositoryInterface',
function (Application $app, array $arguments) {
if (!isset($arguments[0]) && Auth::check()) {
return app('FireflyIII\Repositories\Category\SingleCategoryRepository', [Auth::user()]);
} else {
if (!isset($arguments[0]) && !Auth::check()) {
throw new FireflyException('There is no user present.');
}
}
return app('FireflyIII\Repositories\Category\SingleCategoryRepository', $arguments);
}
);
}
}