Total Complexity | 1 |
Total Lines | 21 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class PlaybackStarted extends AbstractPlaybackDirective |
||
9 | { |
||
10 | const TYPE = 'AudioPlayer.PlaybackStarted'; |
||
11 | |||
12 | /** |
||
13 | * @param string $requestId |
||
14 | * @param string $timestamp |
||
15 | * @param string $token |
||
16 | * @param int $offsetInMilliseconds |
||
17 | * @param string $locale |
||
18 | * |
||
19 | * @return PlaybackStarted |
||
20 | */ |
||
21 | 1 | public static function create(string $requestId, string $timestamp, string $token, int $offsetInMilliseconds, string $locale): self |
|
31 |