| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | final class RandomSongsApplication extends AbstractApiApplication |
||
| 15 | { |
||
| 16 | /** @var int */ |
||
| 17 | private const DEFAULT_LIMIT = 100; |
||
| 18 | |||
| 19 | 1 | public function __construct( |
|
| 20 | private readonly RandomSongsRetrieverInterface $randomSongsRetriever, |
||
| 21 | private readonly ResultItemFactoryInterface $resultItemFactory, |
||
| 22 | ) { |
||
| 23 | 1 | } |
|
| 24 | |||
| 25 | 1 | protected function run( |
|
| 42 | 1 | ); |
|
| 43 | } |
||
| 45 |