| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class ArtistTopSongsApplication extends AbstractApiApplication |
||
| 16 | { |
||
| 17 | 2 | public function __construct( |
|
| 18 | private readonly SongRepositoryInterface $songRepository, |
||
| 19 | private readonly ArtistRepositoryInterface $artistRepository, |
||
| 20 | private readonly ResultItemFactoryInterface $resultItemFactory |
||
| 21 | ) { |
||
| 22 | } |
||
| 23 | |||
| 24 | 2 | protected function run( |
|
| 46 | } |
||
| 47 | } |
||
| 48 |