Вход Регистрация
Файл: vendor/intervention/image/src/Geometry/Factories/BezierFactory.php
Строк: 91
<?php

declare(strict_types=1);

namespace 
InterventionImageGeometryFactories;

use 
Closure;
use 
InterventionImageGeometryPoint;
use 
InterventionImageGeometryBezier;
use 
InterventionImageInterfacesDrawableFactoryInterface;
use 
InterventionImageInterfacesDrawableInterface;

class 
BezierFactory implements DrawableFactoryInterface
{
    protected 
Bezier $bezier;

    
/**
     * Create new factory instance
     *
     * @param null|Closure|Bezier $init
     * @return void
     */
    
public function __construct(null|Closure|Bezier $init null)
    {
        
$this->bezier is_a($initBezier::class) ? $init : new Bezier([]);

        if (
is_callable($init)) {
            
$init($this);
        }
    }

    
/**
     * {@inheritdoc}
     *
     * @see DrawableFactoryInterface::init()
     */
    
public static function init(null|Closure|DrawableInterface $init null): self
    
{
        return new 
self($init);
    }

    
/**
     * {@inheritdoc}
     *
     * @see DrawableFactoryInterface::create()
     */
    
public function create(): DrawableInterface
    
{
        return 
$this->bezier;
    }

    
/**
     * Add a point to the bezier to be produced
     *
     * @param int $x
     * @param int $y
     * @return BezierFactory
     */
    
public function point(int $xint $y): self
    
{
        
$this->bezier->addPoint(new Point($x$y));

        return 
$this;
    }

    
/**
     * Set the background color of the bezier to be produced
     *
     * @param mixed $color
     * @return BezierFactory
     */
    
public function background(mixed $color): self
    
{
        
$this->bezier->setBackgroundColor($color);

        return 
$this;
    }

    
/**
     * Set the border color & border size of the bezier to be produced
     *
     * @param mixed $color
     * @param int $size
     * @return BezierFactory
     */
    
public function border(mixed $colorint $size 1): self
    
{
        
$this->bezier->setBorder($color$size);

        return 
$this;
    }

    
/**
     * Produce the bezier
     *
     * @return Bezier
     */
    
public function __invoke(): Bezier
    
{
        return 
$this->bezier;
    }
}
Онлайн: 0
Реклама