Newscoop\Entity\User::getRealName PHP Method

getRealName() public method

Get real name
public getRealName ( ) : string
return string
    public function getRealName()
    {
        return (string) $this->first_name . ' ' . $this->last_name;
    }

Usage Example

 public function getRealName()
 {
     $this->__load();
     return parent::getRealName();
 }