Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | 5 | public static function create(string $token, int $offsetInMilliseconds, string $playerActivity): self |
|
39 | { |
||
40 | 5 | $currentPlaybackState = new self(); |
|
41 | |||
42 | 5 | $currentPlaybackState->token = $token; |
|
43 | 5 | $currentPlaybackState->offsetInMilliseconds = $offsetInMilliseconds; |
|
44 | 5 | $currentPlaybackState->playerActivity = $playerActivity; |
|
45 | |||
46 | 5 | return $currentPlaybackState; |
|
47 | } |
||
49 |