9 lines
158 B
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;
|
||
|
}
|