Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
36 | 1 | public static function createUrl(string $appId): string |
|
37 | { |
||
38 | $query = [ |
||
39 | 1 | 'client' => 'api-clients/pusher (https://php-api-clients.org/clients/pusher)', |
|
40 | 1 | 'protocol' => 7, |
|
41 | 1 | 'version' => ApiSettings::getVersion(), |
|
42 | ]; |
||
43 | |||
44 | return 'wss://ws.pusherapp.com/app/' . |
||
45 | 1 | $appId . |
|
46 | 1 | '?' . http_build_query($query) |
|
47 | ; |
||
48 | } |
||
49 | } |
||
50 |