18 lines
223 B
PHP
18 lines
223 B
PHP
<?php
|
|
|
|
/**
|
|
* @package: events-venues-task
|
|
* @author: Yevhen Odynets
|
|
* @date: 2024-07-27
|
|
* @time: 12:58
|
|
*/
|
|
|
|
//phpcs:ignore
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Image\Contracts;
|
|
|
|
interface ImageInterface
|
|
{
|
|
}
|