<?php

namespace App\Service;

use App\Entity\CommentLandingPage;

interface CommentLandingPageRepositoryInterface
{
    /**
     * @param int $id
     *
     * @return CommentLandingPage
     */
    public function findById(int $id): ?CommentLandingPage;

    /**
     * @param CommentLandingPage $commentLandingPage
     */
    public function save(CommentLandingPage $commentLandingPage): void;

    /**
     * @param CommentLandingPage $commentLandingPage
     */
    public function delete(CommentLandingPage $commentLandingPage): void;

    public function moveCommentsBetweenUsers(int $from, int $to);
}
