10 lines
126 B
PHP
10 lines
126 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
interface ImageInterface
|
|
{
|
|
public function getImage(): ?string;
|
|
}
|