mirror of
https://github.com/Intervention/image.git
synced 2025-08-30 17:19:50 +02:00
Add doc blocks
This commit is contained in:
@@ -186,6 +186,11 @@ class Font implements FontInterface
|
|||||||
return $this->lineHeight;
|
return $this->lineHeight;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*
|
||||||
|
* @see FontInterface::setWrapWidth()
|
||||||
|
*/
|
||||||
public function setWrapWidth(?int $width): FontInterface
|
public function setWrapWidth(?int $width): FontInterface
|
||||||
{
|
{
|
||||||
$this->wrapWidth = $width;
|
$this->wrapWidth = $width;
|
||||||
@@ -193,6 +198,11 @@ class Font implements FontInterface
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*
|
||||||
|
* @see FontInterface::wrapWidth()
|
||||||
|
*/
|
||||||
public function wrapWidth(): ?int
|
public function wrapWidth(): ?int
|
||||||
{
|
{
|
||||||
return $this->wrapWidth;
|
return $this->wrapWidth;
|
||||||
|
Reference in New Issue
Block a user