Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | public function handle(EventBroadcaster $broadcaster) |
||
29 | { |
||
30 | if ($this->clientId) { |
||
31 | $broadcaster->withAnalytics(fn (Analytics $analytics) => $analytics->setClientId($this->clientId)); |
||
32 | } |
||
33 | |||
34 | if ($this->userId) { |
||
35 | $broadcaster->withAnalytics(fn (Analytics $analytics) => $analytics->setUserId($this->userId)); |
||
36 | } |
||
37 | |||
38 | $broadcaster->handle($this->event); |
||
39 | } |
||
41 |