Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

hexagonal-practice-2. Use port and adapter to video.destroy #334

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions src/Mooc/Videos/Application/Destroy/VideoDestructor.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php

declare(strict_types=1);

namespace CodelyTv\Mooc\Videos\Application\Destroy;

use CodelyTv\Mooc\Videos\Domain\Video;
use CodelyTv\Mooc\Videos\Domain\VideoId;
use CodelyTv\Mooc\Videos\Domain\VideoFinder;
use CodelyTv\Mooc\Videos\Domain\VideoRepository;

final class VideoDestructor
{
private readonly VideoFinder $finder;

public function __construct(private readonly VideoRepository $repository)
{
$this->finder = new VideoFinder($repository);
}

public function __invoke(VideoId $id)
{
/** @var Video */
$video = $this->finder->__invoke($id);

$this->repository->destroy($video);
}
}
2 changes: 2 additions & 0 deletions src/Mooc/Videos/Domain/VideoRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,6 @@ public function save(Video $video): void;
public function search(VideoId $id): ?Video;

public function searchByCriteria(Criteria $criteria): Videos;

public function destroy(Video $video): void;
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,9 @@ public function searchByCriteria(Criteria $criteria): Videos

return new Videos($videos);
}

public function destroy(Video $video): void
{
$this->remove($video);
}
}