public FieldStorageConfig::__sleep()
Implements the magic __sleep() method.
Using the Serialize interface and serialize() / unserialize() methods breaks entity forms in PHP 5.4. @todo Investigate in https://www.drupal.org/node/2074253.
Overrides ConfigEntityBase::__sleep
File
- core/modules/field/src/Entity/FieldStorageConfig.php, line 710
 
Class
- FieldStorageConfig
 - Defines the Field storage configuration entity.
 
Namespace
Drupal\field\Entity
Code
public function __sleep() {
  // Only serialize necessary properties, excluding those that can be
  // recalculated.
  $properties = get_object_vars($this);
  unset($properties['schema'], $properties['propertyDefinitions'], $properties['original']);
  return array_keys($properties);
}
Please login to continue.