Файл vendor/intervention/image/src/Modifiers/DrawEllipseModifier.php Вес запакованого файла 208b (208 b) Вес распакованого файла: 393b (393 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Modifiers;
use Intervention\Image\Geometry\Ellipse;
use Intervention\Image\Interfaces\DrawableInterface;
class DrawEllipseModifier extends AbstractDrawModifier
{
public function __construct(public Ellipse $drawable)
{
}
public function drawable(): DrawableInterface
{
return $this->drawable;
}
}