From dac47b557116b654beeb0b6a3e81c3304443ed75 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 --- framework/core/src/Mail/DriverInterface.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/framework/core/src/Mail/DriverInterface.php b/framework/core/src/Mail/DriverInterface.php index 44a92fb64..d4c2f18e6 100644 --- a/framework/core/src/Mail/DriverInterface.php +++ b/framework/core/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;