public function Webform::__sleep in Little helpers 7
Deprecated
Serializing submission objects is not a good idea especially for long term storage.
File
- src/
Webform/ Webform.php, line 256
Class
Namespace
Drupal\little_helpers\WebformCode
public function __sleep() {
$this->nid = $this->node->nid;
return array(
'nid',
);
}