| Total Complexity | 3 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class PlaybackHistoryApplication extends AbstractApiApplication |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var int |
||
| 18 | */ |
||
| 19 | private const HISTORY_LIMIT = 15; |
||
| 20 | |||
| 21 | 1 | public function __construct( |
|
| 22 | private readonly PlaybackHistoryRepositoryInterface $playbackHistoryRepository, |
||
| 23 | private readonly ResultItemFactoryInterface $resultItemFactory, |
||
| 24 | ) { |
||
| 25 | 1 | } |
|
| 26 | |||
| 27 | 1 | protected function run( |
|
| 46 | 1 | ); |
|
| 47 | } |
||
| 49 |