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