You are here

public function Message::getSenderName in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/contact/src/Entity/Message.php \Drupal\contact\Entity\Message::getSenderName()

Returns the name of the sender.

Return value

string The name of the message sender.

Overrides MessageInterface::getSenderName

File

core/modules/contact/src/Entity/Message.php, line 61

Class

Message
Defines the contact message entity.

Namespace

Drupal\contact\Entity

Code

public function getSenderName() {
  return $this
    ->get('name')->value;
}