1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-30 09:10:21 +02:00

Fix build

This commit is contained in:
Vincent Langlet
2024-05-23 21:35:02 +02:00
committed by Oliver Vogel
parent 895236c471
commit 267d588eb1
2 changed files with 3 additions and 0 deletions

View File

@@ -35,6 +35,7 @@ interface DriverInterface
* Resolve array of classnames or objects into their specialized version for the current driver
*
* @param array<string|object> $objects
* @throws NotSupportedException
* @return array<object>
*/
public function specializeMultiple(array $objects): array;
@@ -53,6 +54,7 @@ interface DriverInterface
* Create new animated image
*
* @param callable $init
* @throws RuntimeException
* @return ImageInterface
*/
public function createAnimation(callable $init): ImageInterface;

View File

@@ -55,6 +55,7 @@ interface ImageManagerInterface
*
* @link https://image.intervention.io/v3/basics/instantiation#creating-animations
* @param callable $init
* @throws RuntimeException
* @return ImageInterface
*/
public function animate(callable $init): ImageInterface;