Файл: concrete5.7.5.6/concrete/vendor/imagine/imagine/lib/Imagine/Image/Fill/FillInterface.php
Строк: 29
<?php
/*
* This file is part of the Imagine package.
*
* (c) Bulat Shakirzyanov <mallluhuct@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ImagineImageFill;
use ImagineImagePaletteColorColorInterface;
use ImagineImagePointInterface;
/**
* Interface for the fill
*/
interface FillInterface
{
/**
* Gets color of the fill for the given position
*
* @param PointInterface $position
*
* @return ColorInterface
*/
public function getColor(PointInterface $position);
}