Total Complexity | 4 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class TrackedChange |
||
8 | { |
||
9 | /** |
||
10 | * @param string|null $uid Unique identifier |
||
11 | * @param string|null $name Name of the tracked change |
||
12 | * @param MediaState|null $from Previous media state |
||
13 | * @param MediaState|null $to New media state |
||
14 | * @param string|null $utcTime UTC timestamp of the change |
||
15 | */ |
||
16 | 3 | public function __construct( |
|
23 | 3 | } |
|
24 | |||
25 | 3 | public static function fromAmazonRequest(array $amazonRequest): self |
|
36 |