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;