function ActionExpressionContainer::__clone
PHP magic __clone function.
File
-
src/
Engine/ ActionExpressionContainer.php, line 101
Class
- ActionExpressionContainer
- Container for actions.
Namespace
Drupal\rules\EngineCode
public function __clone() {
// Implement a deep clone.
foreach ($this->actions as &$action) {
$action = clone $action;
}
}