<?php

declare(strict_types=1);

namespace App\Service;

use App\Entity\Country;

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

    /**
     * @param Country $country
     */
    public function save(Country $country): void;

    /**
     * @param Country $country
     */
    public function delete(Country $country): void;
}
