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 | AllVisitors $allVisitors, |
||
20 | RedirectSources $redirectSources, |
||
21 | Clock $clock, |
||
22 | EventBag $eventBag |
||
23 | ) { |
||
24 | $this->allVisitors = $allVisitors; |
||
25 | $this->redirectSources = $redirectSources; |
||
26 | $this->clock = $clock; |
||
27 | $this->eventBag = $eventBag; |
||
28 | } |
||
50 |