From: Matthias Schmidt Date: Sat, 13 Jan 2018 17:03:49 +0000 (+0100) Subject: Fix typos in parameter documentation X-Git-Tag: 5.2.0_Alpha_1~860 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=57a9b8c0a267d059eea34cd20119466523954fdd;p=GitHub%2FWoltLab%2FWCF.git Fix typos in parameter documentation See #2509 --- diff --git a/wcfsetup/install/files/lib/system/form/builder/field/IFormField.class.php b/wcfsetup/install/files/lib/system/form/builder/field/IFormField.class.php index 343c6a20aa..57bcece455 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/IFormField.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/field/IFormField.class.php @@ -27,7 +27,7 @@ interface IFormField extends IFormChildNode, IFormElement { /** * Sets whether this field is auto-focused and returns this field. * - * @param bool $autoFocus determined if field is auto-focused + * @param bool $autoFocus determines if field is auto-focused * @return static this field * * @throws \InvalidArgumentException if the given value is no bool @@ -103,7 +103,7 @@ interface IFormField extends IFormChildNode, IFormElement { /** * Sets whether the value of this field is immutable and returns this field. * - * @param bool $immutable determined if field value is immutable + * @param bool $immutable determines if field value is immutable * @return static this field * * @throws \InvalidArgumentException if the given value is no bool @@ -162,7 +162,7 @@ interface IFormField extends IFormChildNode, IFormElement { /** * Sets whether it is required to fill out this field and returns this field. * - * @param bool $required determined if field has to be filled out + * @param bool $required determines if field has to be filled out * @return static this field * * @throws \InvalidArgumentException if the given value is no bool diff --git a/wcfsetup/install/files/lib/system/form/builder/field/II18nFormField.class.php b/wcfsetup/install/files/lib/system/form/builder/field/II18nFormField.class.php index 833320a160..d2875141c6 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/II18nFormField.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/field/II18nFormField.class.php @@ -30,7 +30,7 @@ interface II18nFormField extends IFormField { /** * Sets whether this field is supports i18n input and returns this field. * - * @param bool $i18n determined if field is supports i18n input + * @param bool $i18n determines if field is supports i18n input * @return static this field * * @throws \InvalidArgumentException if the given value is no bool @@ -43,7 +43,7 @@ interface II18nFormField extends IFormField { * If this method sets that the field's value must be i18n input, it also must * ensure that i18n support is enabled. * - * @param bool $i18nRequired determined if field value must be i18n input + * @param bool $i18nRequired determines if field value must be i18n input * @return static this field * * @throws \InvalidArgumentException if the given value is no bool diff --git a/wcfsetup/install/files/lib/system/form/builder/field/TI18nFormField.class.php b/wcfsetup/install/files/lib/system/form/builder/field/TI18nFormField.class.php index 77da34dece..0453cb5018 100644 --- a/wcfsetup/install/files/lib/system/form/builder/field/TI18nFormField.class.php +++ b/wcfsetup/install/files/lib/system/form/builder/field/TI18nFormField.class.php @@ -107,7 +107,7 @@ trait TI18nFormField { /** * Sets whether this field is supports i18n input and returns this field. * - * @param bool $i18n determined if field is supports i18n input + * @param bool $i18n determines if field supports i18n input * @return static this field * * @throws \InvalidArgumentException if the given value is no bool @@ -128,7 +128,7 @@ trait TI18nFormField { * If this method sets that the field's value must be i18n input, it also must * ensure that i18n support is enabled. * - * @param bool $i18nRequired determined if field value must be i18n input + * @param bool $i18nRequired determines if field value must be i18n input * @return static this field * * @throws \InvalidArgumentException if the given value is no bool