| Total Complexity | 3 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 17 | class AggregateScrobbler implements Scrobbler |
||
| 18 | { |
||
| 19 | /** @var array<Scrobbler> $scrobblers */ |
||
| 20 | private array $scrobblers; |
||
| 21 | |||
| 22 | public function __construct(array $scrobblers) |
||
| 25 | } |
||
| 26 | |||
| 27 | public function recordTrackPlayed(int $trackId, string $userId, ?\DateTime $timeOfPlay = null): void |
||
| 33 | } |