<?php
declare(strict_types=1);
namespace InterventionImageModifiers;
use InterventionImageGeometryPolygon;
use InterventionImageInterfacesDrawableInterface;
class DrawPolygonModifier extends AbstractDrawModifier
{
public function __construct(public Polygon $drawable)
{
}
public function drawable(): DrawableInterface
{
return $this->drawable;
}
}