Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function __construct(string $name, AbstractOrchestratorAddEvent $addEvent, AbstractOrchestratorNewServiceEvent $newServiceEvent) |
||
18 | { |
||
19 | parent::__construct($name); |
||
20 | $this->add($addEvent); |
||
21 | $this->add($newServiceEvent); |
||
22 | $this->add(new OrchestratorChooseEnvironmentEvent()); |
||
23 | } |
||
25 |