| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | public static function build(array $properties, ?array $publishers = [], ?array $subscribers = []) |
||
| 20 | { |
||
| 21 | return new Connection($properties['connectionId'], |
||
| 22 | $properties['createdAt'], |
||
| 23 | $properties['role'], |
||
| 24 | $properties['token'], |
||
| 25 | $properties['location'], |
||
| 26 | $properties['platform'], |
||
| 27 | $properties['serverData'], |
||
| 28 | $properties['clientData'], |
||
| 29 | $publishers, |
||
| 30 | $subscribers |
||
| 31 | ); |
||
| 33 | } |