1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-23 22:12:51 +02:00

Add doc block

This commit is contained in:
Oliver Vogel
2024-01-15 11:55:30 +01:00
parent 329c89164c
commit 7e42085afd

View File

@@ -205,6 +205,11 @@ final class Image implements ImageInterface
return $this->modify(new RemoveAnimationModifier($position)); return $this->modify(new RemoveAnimationModifier($position));
} }
/**
* {@inheritdoc}
*
* @see ImageInterface::sliceAnimation()
*/
public function sliceAnimation(int $offset = 0, ?int $length = null): ImageInterface public function sliceAnimation(int $offset = 0, ?int $length = null): ImageInterface
{ {
return $this->modify(new SliceAnimationModifier($offset, $length)); return $this->modify(new SliceAnimationModifier($offset, $length));