Файл vendor/intervention/image/src/Modifiers/DrawBezierModifier.php Вес запакованого файла 271b (271 b) Вес распакованого файла: 587b (587 b) Метод сжатия: 8
<?php
declare(strict_types=1);
namespace Intervention\Image\Modifiers;
use Intervention\Image\Geometry\Bezier;
use Intervention\Image\Interfaces\DrawableInterface;
class DrawBezierModifier extends AbstractDrawModifier
{
/**
* Create new modifier object
*
* @param Bezier $drawable
* @return void
*/
public function __construct(public Bezier $drawable)
{
}
/**
* Return object to be drawn
*
* @return DrawableInterface
*/
public function drawable(): DrawableInterface
{
return $this->drawable;
}
}