Example #1
0
 public function __construct(TaskInterface $task, ProcessEngine $engine)
 {
     parent::__construct($engine);
     $this->task = $task;
 }
Example #2
0
 public function __construct($name, VirtualExecution $execution, ProcessEngine $engine)
 {
     parent::__construct($engine);
     $this->name = (string) $name;
     $this->execution = $execution;
 }
Example #3
0
 public function __construct(VirtualExecution $execution, array $variables, ProcessEngine $engine)
 {
     parent::__construct($engine);
     $this->execution = $execution;
     $this->variables = $variables;
 }
 public function __construct(VirtualExecution $execution, ProcessEngine $engine)
 {
     parent::__construct($engine);
     $this->execution = $execution;
 }