| Total Complexity | 4 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class CatalogDeleter implements CatalogDeleterInterface |
||
| 16 | { |
||
| 17 | 2 | public function __construct( |
|
| 18 | private readonly CatalogRepositoryInterface $catalogRepository, |
||
| 19 | private readonly AlbumRepositoryInterface $albumRepository, |
||
| 20 | private readonly AlbumDeleterInterface $albumDeleter, |
||
| 21 | ) { |
||
| 22 | 2 | } |
|
| 23 | |||
| 24 | 2 | public function delete( |
|
| 53 | } |
||
| 54 | } |
||
| 55 |