Файл: vendor/intervention/image/src/Interfaces/DrawableFactoryInterface.php
Строк: 31
<?php
declare(strict_types=1);
namespace InterventionImageInterfaces;
interface DrawableFactoryInterface
{
/**
* Create the drawable end product.
*/
public static function build(null|callable|DrawableInterface $drawable = null): DrawableInterface;
/**
* Create the end product of the factory.
*/
public function drawable(): DrawableInterface;
/**
* Define the background color of the drawable object.
*/
public function background(string|ColorInterface $color): self;
/**
* Set the border size & color of the drawable object to be produced.
*/
public function border(string|ColorInterface $color, int $size = 1): self;
}