Newscoop\Entity\User::getName PHP 메소드

getName() 공개 메소드

Get name
public getName ( ) : string
리턴 string
    public function getName()
    {
        $name = $this->getFirstName() . ' ' . $this->getLastName();
        return $name;
    }

Usage Example

예제 #1
0
 public function getName()
 {
     $this->__load();
     return parent::getName();
 }
All Usage Examples Of Newscoop\Entity\User::getName