service-captcha/app/Captcha/Dto/ImageHead.php

19 lines
284 B
PHP
Raw Normal View History

<?php declare(strict_types=1);
namespace App\Captcha\Dto;
final readonly class ImageHead
{
public function __construct(
private Image $image
) { }
/**
* @return Image
*/
public function getImage(): Image
{
return $this->image;
}
}