You are here

public function WebformSubmission::getNotes in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Entity/WebformSubmission.php \Drupal\webform\Entity\WebformSubmission::getNotes()

Get the submission's notes.

Return value

string The submission's notes.

Overrides WebformSubmissionInterface::getNotes

File

src/Entity/WebformSubmission.php, line 322

Class

WebformSubmission
Defines the WebformSubmission entity.

Namespace

Drupal\webform\Entity

Code

public function getNotes() {
  return $this
    ->get('notes')->value;
}