Exemplo n.º 1
0
 protected function parseExclusiveGateway($id, \DOMElement $el, BusinessProcessBuilder $builder)
 {
     $gateway = $builder->exclusiveGateway($id, $el->getAttribute('name'));
     $gateway->setDefaultFlow($el->getAttribute('default'));
     $gateway->setAsyncBefore($this->getAsyncBefore($el));
     $gateway->setAsyncAfter($this->getAsyncAfter($el));
     return $gateway;
 }