Forgot to exclude a method.

This commit is contained in:
James Cole 2016-10-09 08:06:49 +02:00
parent b5b55e862c
commit 3f40751a1a
2 changed files with 1 additions and 15 deletions

View File

@ -49,7 +49,7 @@ class AccountServiceProvider extends ServiceProvider
}
/**
*
*
*/
private function registerRepository()
{

View File

@ -27,20 +27,6 @@ use Illuminate\Support\Collection;
interface AccountRepositoryInterface
{
/**
* This method is almost the same as ::earnedInPeriod, but only works for revenue accounts
* instead of the implied asset accounts for ::earnedInPeriod. ::earnedInPeriod will tell you
* how much money was earned by the given asset accounts. This method will tell you how much money
* these given revenue accounts sent. Ie. how much money was made FROM these revenue accounts.
*
* @param Collection $accounts
* @param Carbon $start
* @param Carbon $end
*
* @return string
*/
public function earnedFromInPeriod(Collection $accounts, Carbon $start, Carbon $end): string;
/**
* This method will call AccountRepositoryInterface::journalsInPeriod and get all withdrawaks made from the given $accounts,
* as well as the transfers that move away from those $accounts. This is a slightly sharper selection