| Total Complexity | 2 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class PlaybackStopped extends AbstractPlaybackDirective |
||
| 8 | { |
||
| 9 | public const TYPE = 'AudioPlayer.PlaybackStopped'; |
||
| 10 | |||
| 11 | 1 | public function __construct( |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $requestId |
||
| 24 | * @param string $timestamp |
||
| 25 | * @param string $token |
||
| 26 | * @param int $offsetInMilliseconds |
||
| 27 | * @param string $locale |
||
| 28 | * |
||
| 29 | * @return PlaybackStopped |
||
| 30 | */ |
||
| 31 | 1 | public static function create(string $requestId, string $timestamp, string $token, int $offsetInMilliseconds, string $locale): self |
|
| 36 |