Initial commit
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\FeedManagement\Application\ReadModel;
|
||||
|
||||
use App\Aggregator\Domain\Model\ValueObject\Scoring\Sentiment;
|
||||
use App\FeedManagement\Domain\Model\Identity\CommentId;
|
||||
use App\SharedKernel\Domain\DataTransfert\DataMapping;
|
||||
|
||||
/**
|
||||
* Class Comment.
|
||||
*
|
||||
* @author bernard-ng <bernard@devscast.tech>
|
||||
*/
|
||||
final readonly class Comment
|
||||
{
|
||||
public function __construct(
|
||||
public CommentId $id,
|
||||
public UserReference $user,
|
||||
public Sentiment $sentiment,
|
||||
public string $content,
|
||||
public \DateTimeImmutable $createdAt,
|
||||
) {
|
||||
}
|
||||
|
||||
public static function create(array $item): self
|
||||
{
|
||||
return new self(
|
||||
CommentId::fromBinary($item['comment_id']),
|
||||
UserReference::create($item),
|
||||
DataMapping::enum($item, 'comment_sentiment', Sentiment::class),
|
||||
DataMapping::string($item, 'comment_content'),
|
||||
DataMapping::dateTime($item, 'comment_created_at')
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user