You are here

public function BaseFieldDefinition::__sleep in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Field/BaseFieldDefinition.php \Drupal\Core\Field\BaseFieldDefinition::__sleep()

File

core/lib/Drupal/Core/Field/BaseFieldDefinition.php, line 584
Contains \Drupal\Core\Field\BaseFieldDefinition.

Class

BaseFieldDefinition
A class for defining entity fields.

Namespace

Drupal\Core\Field

Code

public function __sleep() {

  // Do not serialize the statically cached property definitions.
  $vars = get_object_vars($this);
  unset($vars['propertyDefinitions']);
  return array_keys($vars);
}