Files
service-captcha/app/application/app/Captcha/Contracts/ImageManager.php

9 lines
158 B
PHP

<?php declare(strict_types=1);
namespace App\Captcha\Contracts;
interface ImageManager
{
public function createImage(int $width, int $height): Image;
}