mirror of
https://github.com/Intervention/image.git
synced 2025-08-12 00:43:59 +02:00
Add doc blocks
This commit is contained in:
@@ -31,7 +31,7 @@ class EncodedImage extends File implements EncodedImageInterface
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Alias of self::mediaType(
|
* Alias of self::mediaType()
|
||||||
*
|
*
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
|
@@ -831,6 +831,11 @@ final class Image implements ImageInterface
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*
|
||||||
|
* @see ImageInterface::drawPolygon()
|
||||||
|
*/
|
||||||
public function drawPolygon(callable $init): ImageInterface
|
public function drawPolygon(callable $init): ImageInterface
|
||||||
{
|
{
|
||||||
return $this->modify(
|
return $this->modify(
|
||||||
@@ -840,6 +845,11 @@ final class Image implements ImageInterface
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*
|
||||||
|
* @see ImageInterface::drawLine()
|
||||||
|
*/
|
||||||
public function drawLine(callable $init): ImageInterface
|
public function drawLine(callable $init): ImageInterface
|
||||||
{
|
{
|
||||||
return $this->modify(
|
return $this->modify(
|
||||||
|
Reference in New Issue
Block a user