Пример #1
0
 /**
  * Get to account.
  */
 public function getToAccount()
 {
     if (!$this->toAccount) {
         $this->toAccount = Account::findOne($this->toAccountId);
     }
     if (!$this->toAccount) {
         throw new Exception("No target account for transaction!");
     }
     return $this->toAccount;
 }