From f15efc8ccfc77cc3f3e524b6f989adb40a151734 Mon Sep 17 00:00:00 2001 From: Jordan Hoff Date: Mon, 30 Aug 2021 09:35:36 -0500 Subject: [PATCH] Use correct docbock returns in AbstractFont.php --- src/Intervention/Image/AbstractFont.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Intervention/Image/AbstractFont.php b/src/Intervention/Image/AbstractFont.php index ed2ea0478..35c1825a6 100644 --- a/src/Intervention/Image/AbstractFont.php +++ b/src/Intervention/Image/AbstractFont.php @@ -69,7 +69,7 @@ abstract class AbstractFont * @return boolean */ abstract public function applyToImage(Image $image, $posx = 0, $posy = 0); - + /** * Calculates bounding box of current font setting * @@ -91,7 +91,7 @@ public function __construct($text = null) * Set text to be written * * @param String $text - * @return void + * @return self */ public function text($text) { @@ -114,7 +114,7 @@ public function getText() * Set font size in pixels * * @param int $size - * @return void + * @return self */ public function size($size) { @@ -137,7 +137,7 @@ public function getSize() * Set color of text to be written * * @param mixed $color - * @return void + * @return self */ public function color($color) { @@ -160,7 +160,7 @@ public function getColor() * Set rotation angle of text * * @param int $angle - * @return void + * @return self */ public function angle($angle) { @@ -183,7 +183,7 @@ public function getAngle() * Set horizontal text alignment * * @param string $align - * @return void + * @return self */ public function align($align) { @@ -206,7 +206,7 @@ public function getAlign() * Set vertical text alignment * * @param string $valign - * @return void + * @return self */ public function valign($valign) { @@ -250,7 +250,7 @@ public function getKerning() * Set path to font file * * @param string $file - * @return void + * @return self */ public function file($file) {