From 1a7b1ce499344d2da4e82ce5165916686995a0c8 Mon Sep 17 00:00:00 2001 From: James Cole Date: Fri, 1 Jan 2016 20:00:20 +0100 Subject: [PATCH] Method no longer used. --- .../Category/SingleCategoryRepository.php | 14 -------------- .../Category/SingleCategoryRepositoryInterface.php | 12 ------------ 2 files changed, 26 deletions(-) diff --git a/app/Repositories/Category/SingleCategoryRepository.php b/app/Repositories/Category/SingleCategoryRepository.php index 1f56c180d2..5c3bf5481c 100644 --- a/app/Repositories/Category/SingleCategoryRepository.php +++ b/app/Repositories/Category/SingleCategoryRepository.php @@ -18,20 +18,6 @@ use Illuminate\Support\Collection; class SingleCategoryRepository extends ComponentRepository implements SingleCategoryRepositoryInterface { - /** - * @param Category $category - * @param Carbon $start - * @param Carbon $end - * @param Collection $accounts - * - * @return string - */ - public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, Collection $accounts) - { - return $this->commonBalanceInPeriod($category, $start, $end, $accounts); - } - - /** * @param Category $category * diff --git a/app/Repositories/Category/SingleCategoryRepositoryInterface.php b/app/Repositories/Category/SingleCategoryRepositoryInterface.php index d2e233da30..4b4a5e2f4e 100644 --- a/app/Repositories/Category/SingleCategoryRepositoryInterface.php +++ b/app/Repositories/Category/SingleCategoryRepositoryInterface.php @@ -13,18 +13,6 @@ use Illuminate\Support\Collection; */ interface SingleCategoryRepositoryInterface { - /** - * Corrected for tags and list of accounts. - * - * @param Category $category - * @param \Carbon\Carbon $start - * @param \Carbon\Carbon $end - * @param Collection $accounts - * - * @return string - */ - public function balanceInPeriod(Category $category, Carbon $start, Carbon $end, Collection $accounts); - /** * @param Category $category *