From 00b7f8a4127ffa11d45ad4bc864aba0eabec3070 Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Wed, 15 May 2024 17:06:06 +0200 Subject: [PATCH] Add @throws docblock tags --- src/Interfaces/DriverInterface.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Interfaces/DriverInterface.php b/src/Interfaces/DriverInterface.php index cc755859..95503160 100644 --- a/src/Interfaces/DriverInterface.php +++ b/src/Interfaces/DriverInterface.php @@ -44,6 +44,8 @@ interface DriverInterface * Resolve array of classnames or objects into their specialized version for the current driver * * @param array $objects + * @throws NotSupportedException + * @throws DriverException * @return array */ public function specializeMultiple(array $objects): array; @@ -62,6 +64,7 @@ interface DriverInterface * Create new animated image * * @param callable $init + * @throws RuntimeException * @return ImageInterface */ public function createAnimation(callable $init): ImageInterface;