File manager - Edit - /var/www/payraty/helpdesk/vendor/intervention/image/src/Interfaces/DrawableInterface.php
Back
<?php declare(strict_types=1); namespace Intervention\Image\Interfaces; interface DrawableInterface { /** * Position of the drawable object * * @return PointInterface */ public function position(): PointInterface; /** * Set position of the drawable object * * @param PointInterface $position * @return DrawableInterface */ public function setPosition(PointInterface $position): self; /** * Set the background color of the drawable object * * @param mixed $color * @return DrawableInterface */ public function setBackgroundColor(mixed $color): self; /** * Return background color of drawable object * * @return mixed */ public function backgroundColor(): mixed; /** * Determine if a background color was set * * @return bool */ public function hasBackgroundColor(): bool; /** * Set border color & size of the drawable object * * @param mixed $color * @param int $size * @return DrawableInterface */ public function setBorder(mixed $color, int $size = 1): self; /** * Set border size of the drawable object * * @param int $size * @return DrawableInterface */ public function setBorderSize(int $size): self; /** * Set border color of the drawable object * * @param mixed $color * @return DrawableInterface */ public function setBorderColor(mixed $color): self; /** * Get border size * * @return int */ public function borderSize(): int; /** * Get border color of drawable object * * @return mixed */ public function borderColor(): mixed; /** * Determine if the drawable object has a border * * @return bool */ public function hasBorder(): bool; }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0.09 |
proxy
|
phpinfo
|
Settings