Pantheon\Terminus\Models\User::getName PHP Method

getName() public method

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

Usage Example

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