Add captcha image generation functionality.
This commit is contained in:
12
app/Captcha/Contracts/ImageBody.php
Normal file
12
app/Captcha/Contracts/ImageBody.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace App\Captcha\Contracts;
|
||||
|
||||
use App\Captcha\Config\ImageBody as ImageBodyConfig;
|
||||
use App\Captcha\Dto\ImageBody as ImageBodyDto;
|
||||
use App\Captcha\Dto\Symbols;
|
||||
|
||||
interface ImageBody
|
||||
{
|
||||
public function processing(Symbols $symbols, ImageBodyConfig $config): ImageBodyDto;
|
||||
}
|
Reference in New Issue
Block a user