| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | 5 | public function __construct( |
|
| 14 | public ?Error $error = null, |
||
| 15 | public ?CurrentPlaybackState $currentPlaybackState = null, |
||
| 16 | string $requestId = '', |
||
| 17 | string $timestamp = '', |
||
| 18 | string $token = '', |
||
| 19 | int $offsetInMilliseconds = 0, |
||
| 20 | string $locale = '' |
||
| 21 | ) { |
||
| 22 | 5 | parent::__construct($requestId, $timestamp, $token, $offsetInMilliseconds, $locale); |
|
| 23 | 5 | $this->type = self::TYPE; |
|
| 24 | } |
||
| 31 |