1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-30 09:10:21 +02:00

Add doc blocks

This commit is contained in:
Oliver Vogel
2024-02-06 15:30:56 +01:00
parent 0d2c3e7d01
commit a86a94762e

View File

@@ -186,6 +186,11 @@ class Font implements FontInterface
return $this->lineHeight;
}
/**
* {@inheritdoc}
*
* @see FontInterface::setWrapWidth()
*/
public function setWrapWidth(?int $width): FontInterface
{
$this->wrapWidth = $width;
@@ -193,6 +198,11 @@ class Font implements FontInterface
return $this;
}
/**
* {@inheritdoc}
*
* @see FontInterface::wrapWidth()
*/
public function wrapWidth(): ?int
{
return $this->wrapWidth;