ebs/src/Entity/ImageInterface.php
2023-12-21 08:49:38 +01:00

10 lines
126 B
PHP

<?php
declare(strict_types=1);
namespace App\Entity;
interface ImageInterface
{
public function getImage(): ?string;
}