X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FForm%2FConfirmFormInterface.php;fp=web%2Fcore%2Flib%2FDrupal%2FCore%2FForm%2FConfirmFormInterface.php;h=bdfdafcc2ae735afc9d3463d88c201b53bd460c8;hp=55ec252bc103a2038b551aad927d82ebed4e7cad;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hpb=74df008bdbb3a11eeea356744f39b802369bda3c diff --git a/web/core/lib/Drupal/Core/Form/ConfirmFormInterface.php b/web/core/lib/Drupal/Core/Form/ConfirmFormInterface.php index 55ec252bc..bdfdafcc2 100644 --- a/web/core/lib/Drupal/Core/Form/ConfirmFormInterface.php +++ b/web/core/lib/Drupal/Core/Form/ConfirmFormInterface.php @@ -10,7 +10,7 @@ interface ConfirmFormInterface extends FormInterface { /** * Returns the question to ask the user. * - * @return string + * @return \Drupal\Core\StringTranslation\TranslatableMarkup * The form question. The page title will be set to this value. */ public function getQuestion(); @@ -26,7 +26,7 @@ interface ConfirmFormInterface extends FormInterface { /** * Returns additional text to display as a description. * - * @return string + * @return \Drupal\Core\StringTranslation\TranslatableMarkup * The form description. */ public function getDescription(); @@ -34,7 +34,7 @@ interface ConfirmFormInterface extends FormInterface { /** * Returns a caption for the button that confirms the action. * - * @return string + * @return \Drupal\Core\StringTranslation\TranslatableMarkup * The form confirmation text. */ public function getConfirmText(); @@ -42,7 +42,7 @@ interface ConfirmFormInterface extends FormInterface { /** * Returns a caption for the link which cancels the action. * - * @return string + * @return \Drupal\Core\StringTranslation\TranslatableMarkup * The form cancellation text. */ public function getCancelText();