コード例 #1
0
 /**
  * @return string
  */
 public function getRecipientName()
 {
     if ($this->recipient instanceof DiamanteUser) {
         return $this->recipient->getFullName();
     }
     return $this->recipient->getFirstName() . ' ' . $this->recipient->getLastName();
 }
コード例 #2
0
 /**
  * @return string
  */
 public function getRecipientName()
 {
     return $this->recipient->getFullName();
 }