diff --git a/src/Typography/Font.php b/src/Typography/Font.php index 8dd40b02..33cf0271 100644 --- a/src/Typography/Font.php +++ b/src/Typography/Font.php @@ -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;