Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
18 | public function __construct( |
||
19 | AccountIdGenerator $identityGenerator, |
||
20 | AllVisitors $visitors, |
||
21 | PlayerBase $playerBase, |
||
22 | EventBag $eventBag |
||
23 | ) { |
||
24 | $this->newIdentity = $identityGenerator; |
||
25 | $this->visitor = $visitors; |
||
26 | $this->playerBase = $playerBase; |
||
27 | $this->eventBag = $eventBag; |
||
28 | } |
||
52 |