public function Element::setParent in Business Rules 8
Same name and namespace in other branches
- 2.x src/Util/Flowchart/Element.php \Drupal\business_rules\Util\Flowchart\Element::setParent()
Set the parent item.
Parameters
\Drupal\business_rules\Util\Flowchart\Element $parent: The parent item.
File
- src/
Util/ Flowchart/ Element.php, line 145
Class
- Element
- Class Element.
Namespace
Drupal\business_rules\Util\FlowchartCode
public function setParent(Element $parent) {
$this->parent = $parent;
}