| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class CurrentPlaybackState |
||
| 8 | { |
||
| 9 | public const PLAYER_ACTIVITY_PLAYING = 'PLAYING'; |
||
| 10 | public const PLAYER_ACTIVITY_PAUSED = 'PAUSED'; |
||
| 11 | public const PLAYER_ACTIVITY_FINISHED = 'FINISHED'; |
||
| 12 | public const PLAYER_ACTIVITY_BUFFER_UNDERRUN = 'BUFFER_UNDERRUN'; |
||
| 13 | public const PLAYER_ACTIVITY_IDLE = 'IDLE'; |
||
| 14 | |||
| 15 | 5 | public function __construct( |
|
| 20 | 5 | } |
|
| 21 | |||
| 22 | 5 | public static function create(string $token, int $offsetInMilliseconds, string $playerActivity): self |
|
| 27 |