Exemplo n.º 1
0
 /**
  * Get the root execution (could be refered to as a "process instance").
  * 
  * @return Execution
  */
 public function getRootExecution()
 {
     if ($this->parentExecution === NULL) {
         return $this;
     }
     return $this->parentExecution->getRootExecution();
 }