From d2c345c83480a68f10818183a0ea4ca99fc1e489 Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Tue, 14 Jan 2020 11:44:29 +0100 Subject: [PATCH] Document changes in mail driver interface --- src/Mail/DriverInterface.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Mail/DriverInterface.php b/src/Mail/DriverInterface.php index 44a92fb64..d4c2f18e6 100644 --- a/src/Mail/DriverInterface.php +++ b/src/Mail/DriverInterface.php @@ -24,6 +24,10 @@ interface DriverInterface { /** * Provide a list of settings for this driver. + * + * The list must be an array of field names (keys) mapping to their type + * (the empty string "" for a text field; or an array of possible values for + * a dropdown field). */ public function availableSettings(): array;