diff --git a/src/Interfaces/DriverInterface.php b/src/Interfaces/DriverInterface.php index 9ddabb2c..466f4b22 100644 --- a/src/Interfaces/DriverInterface.php +++ b/src/Interfaces/DriverInterface.php @@ -35,6 +35,7 @@ interface DriverInterface * Resolve array of classnames or objects into their specialized version for the current driver * * @param array $objects + * @throws NotSupportedException * @return array */ 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; diff --git a/src/Interfaces/ImageManagerInterface.php b/src/Interfaces/ImageManagerInterface.php index 33278194..e79d0235 100644 --- a/src/Interfaces/ImageManagerInterface.php +++ b/src/Interfaces/ImageManagerInterface.php @@ -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;