From 7e42085afd141ec15d7344866caf22c49fd59be1 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Mon, 15 Jan 2024 11:55:30 +0100 Subject: [PATCH] Add doc block --- src/Image.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Image.php b/src/Image.php index f30ab50d..7f705235 100644 --- a/src/Image.php +++ b/src/Image.php @@ -205,6 +205,11 @@ final class Image implements ImageInterface return $this->modify(new RemoveAnimationModifier($position)); } + /** + * {@inheritdoc} + * + * @see ImageInterface::sliceAnimation() + */ public function sliceAnimation(int $offset = 0, ?int $length = null): ImageInterface { return $this->modify(new SliceAnimationModifier($offset, $length));