You are here

public function Submission::__get in Little helpers 7.2

Same name and namespace in other branches
  1. 7 src/Webform/Submission.php \Drupal\little_helpers\Webform\Submission::__get()

Transparently access submission properties.

Return value

mixed The value of the submission property.

File

src/Webform/Submission.php, line 175

Class

Submission
A useful wrapper for webform submission objects.

Namespace

Drupal\little_helpers\Webform

Code

public function __get($name) {
  return $this->submission->{$name};
}