1 | <?php |
||
22 | final class ContentListItemsRemover implements ContentListItemsRemoverInterface |
||
23 | { |
||
24 | /** |
||
25 | * @var ContentListItemRepositoryInterface |
||
26 | */ |
||
27 | private $contentListItemRepository; |
||
28 | |||
29 | /** |
||
30 | * @param ContentListItemRepositoryInterface $contentListItemRepository |
||
31 | */ |
||
32 | 6 | public function __construct(ContentListItemRepositoryInterface $contentListItemRepository) |
|
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | 5 | public function removeContentListItems(ContentListInterface $contentList) |
|
44 | } |
||
45 |