Expand documentation for Helper directory.

This commit is contained in:
James Cole
2018-07-07 23:14:16 +02:00
parent 8e08ff2d39
commit 10492e3b2f
30 changed files with 328 additions and 51 deletions

View File

@@ -30,11 +30,11 @@ use Illuminate\Support\Collection;
*/
class BalanceHeader
{
/** @var Collection */
/** @var Collection The accounts. */
protected $accounts;
/**
*
* BalanceHeader constructor.
*/
public function __construct()
{
@@ -42,6 +42,8 @@ class BalanceHeader
}
/**
* Add an account.
*
* @param AccountModel $account
*/
public function addAccount(AccountModel $account): void
@@ -50,6 +52,8 @@ class BalanceHeader
}
/**
* Get them all.
*
* @return Collection
*/
public function getAccounts(): Collection