accounts = new Collection; } /** * @param AccountModel $account */ public function addAccount(AccountModel $account) { $this->accounts->push($account); } /** * @return Collection */ public function getAccounts(): Collection { return $this->accounts; } }