You are here

public function ContentModerationNotification::getEmails in Content Moderation Notifications 8.3

Get the email addresses.

Return value

string The email addresses (comma-separated) for which to send the notification.

Overrides ContentModerationNotificationInterface::getEmails

File

src/Entity/ContentModerationNotification.php, line 177

Class

ContentModerationNotification
Defines the content_moderation_notification entity.

Namespace

Drupal\content_moderation_notifications\Entity

Code

public function getEmails() {
  return $this
    ->get('emails');
}