public function testWorkflowRunId()
 {
     $this->assertTrue($this->actionCreated->workflowRunId() instanceof WorkflowRunId);
 }
Пример #2
0
 /**
  * @param ActionCreated $event
  */
 protected function onActionCreated(ActionCreated $event)
 {
     $this->actionId = $event->actionId();
     $this->type = $event->actionType();
     $this->name = $event->actionName();
     $this->arguments = $event->actionArguments();
     $this->workflowRunId = $event->workflowRunId();
 }