public function Attribute::__clone in Drupal 8
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/Template/Attribute.php \Drupal\Core\Template\Attribute::__clone()
Implements the magic __clone() method.
File
- core/
lib/ Drupal/ Core/ Template/ Attribute.php, line 343
Class
- Attribute
- Collects, sanitizes, and renders HTML attributes.
Namespace
Drupal\Core\TemplateCode
public function __clone() {
foreach ($this->storage as $name => $value) {
$this->storage[$name] = clone $value;
}
}