<?php
declare(strict_types=1);
namespace InterventionImageModifiers;
use InterventionImageGeometryEllipse;
use InterventionImageInterfacesDrawableInterface;
class DrawEllipseModifier extends AbstractDrawModifier
{
public function __construct(public Ellipse $drawable)
{
//
}
/**
* Return object to be drawn.
*/
protected function drawable(): DrawableInterface
{
return $this->drawable;
}
}