Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 4 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
45 | public function __construct(UseCaseInterface $alreadyRegisteredUseCase, UseCaseInterface $duplicatedUseCase, $commandClass) |
||
46 | { |
||
47 | $this->alreadyRegisteredUseCase = $alreadyRegisteredUseCase; |
||
48 | $this->duplicatedUseCase = $duplicatedUseCase; |
||
49 | $this->commandClass = $commandClass; |
||
50 | } |
||
51 | |||
79 |