From a86a94762e743d60c908452ae7d883fd0f88dc28 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Tue, 6 Feb 2024 15:30:56 +0100 Subject: [PATCH] Add doc blocks --- src/Typography/Font.php | 10 ++++++++++ 1 file changed, 10 insertions(+) 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;