From 9ff8cd25ab6155d5d300d4c7418b134913ad31cf Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Wed, 20 Dec 2023 16:06:02 +0100 Subject: [PATCH] Improve documentation --- src/Interfaces/DriverInterface.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Interfaces/DriverInterface.php b/src/Interfaces/DriverInterface.php index 1f7a4490..232291b6 100644 --- a/src/Interfaces/DriverInterface.php +++ b/src/Interfaces/DriverInterface.php @@ -53,8 +53,10 @@ interface DriverInterface public function colorProcessor(ColorspaceInterface $colorspace): ColorProcessorInterface; /** - * Check whether all requirements for operating the driver are met + * Check whether all requirements for operating the driver are met and + * throw exception if the check fails. * + * @throws \Intervention\Image\Exceptions\RuntimeException * @return void */ public function checkHealth(): void;