You are here

public function Submission::__set in Little helpers 7.2

Transparently access submission properties.

File

src/Webform/Submission.php, line 182

Class

Submission
A useful wrapper for webform submission objects.

Namespace

Drupal\little_helpers\Webform

Code

public function __set($name, $value) {
  return $this->submission->{$name} = $value;
}