function Map::__clone

Magic method: Implements a deep clone.

File

core/lib/Drupal/Core/TypedData/Plugin/DataType/Map.php, line 214

Class

Map
The "map" data type.

Namespace

Drupal\Core\TypedData\Plugin\DataType

Code

public function __clone() {
  foreach ($this->properties as $name => $property) {
    $this->properties[$name] = clone $property;
    $this->properties[$name]
      ->setContext($name, $this);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.