Pantheon\Terminus\Models\User::getName PHP Méthode

getName() public méthode

Get the user's full name.
public getName ( ) : string
Résultat string
    public function getName()
    {
        return $this->getProfile()->full_name;
    }

Usage Example

 public function testGetName()
 {
     $this->assertEquals($this->user_data['profile']->full_name, $this->user->getName());
 }