You are here

public function Submission::__get in Little helpers 7

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

All submission properties are accessible directly.

File

src/Webform/Submission.php, line 151

Class

Submission
A useful wrapper for webform submission objects.

Namespace

Drupal\little_helpers\Webform

Code

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