| Total Complexity | 5 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 9 | class PlayMediaCommand extends AbstractStandardCommand |
||
| 10 | { |
||
| 11 | public const TYPE = 'PlayMedia'; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @param string|null $componentId ID of the component to play media on |
||
| 15 | * @param string|array|null $source Media source URL or array of sources |
||
| 16 | * @param AudioTrack|null $audioTrack Audio track to play on |
||
| 17 | */ |
||
| 18 | 7 | public function __construct( |
|
| 24 | } |
||
| 25 | |||
| 26 | 4 | public function jsonSerialize(): array |
|
| 45 |