Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
41 | protected function getPusherBroadcaster(array $validated): PusherBroadcaster |
||
42 | { |
||
43 | $pusher = new Pusher( |
||
44 | $validated['key'], |
||
45 | $validated['secret'], |
||
46 | $validated['appId'], |
||
47 | $this->config->get('broadcasting.connections.pusher.options', []) |
||
48 | ); |
||
49 | |||
50 | return new PusherBroadcaster($pusher); |
||
51 | } |
||
52 | } |
||
53 |