Fixed some issues with the monthly report and missing amounts.

This commit is contained in:
James Cole
2017-01-19 21:54:27 +01:00
parent 20bb151cf3
commit be868d37f2
7 changed files with 88 additions and 164 deletions

View File

@@ -14,7 +14,6 @@ declare(strict_types = 1);
namespace FireflyIII\Repositories\Account;
use Carbon\Carbon;
use FireflyIII\Helpers\Collection\Account as AccountCollection;
use Illuminate\Support\Collection;
/**
@@ -54,8 +53,8 @@ interface AccountTaskerInterface
* @param Carbon $start
* @param Carbon $end
*
* @return AccountCollection
* @return array
*/
public function getAccountReport(Collection $accounts, Carbon $start, Carbon $end): AccountCollection;
public function getAccountReport(Collection $accounts, Carbon $start, Carbon $end): array;
}