Skip to content

Commit 69a6529

Browse files
authored
[4.4] fixing typo (joomla#43875)
* [4.4] fixing typo removal double "as" * replace ' as as ' by ' as '
1 parent 7202543 commit 69a6529

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

administrator/components/com_content/src/Field/VotelistField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class VotelistField extends ListField
3737
*
3838
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
3939
* @param mixed $value The form field value to validate.
40-
* @param string $group The field name group control value. This acts as as an array container for the field.
40+
* @param string $group The field name group control value. This acts as an array container for the field.
4141
* For example if the field has name="foo" and the group value is set to "bar" then the
4242
* full field name would end up being "bar[foo]".
4343
*

administrator/components/com_content/src/Field/VoteradioField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class VoteradioField extends RadioField
3737
*
3838
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
3939
* @param mixed $value The form field value to validate.
40-
* @param string $group The field name group control value. This acts as as an array container for the field.
40+
* @param string $group The field name group control value. This acts as an array container for the field.
4141
* For example if the field has name="foo" and the group value is set to "bar" then the
4242
* full field name would end up being "bar[foo]".
4343
*

installation/src/Form/Field/Installation/LanguageField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class LanguageField extends ListField
3838
*
3939
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
4040
* @param mixed $value The form field value to validate.
41-
* @param string $group The field name group control value. This acts as as an array container for the field.
41+
* @param string $group The field name group control value. This acts as an array container for the field.
4242
* For example if the field has name="foo" and the group value is set to "bar" then the
4343
* full field name would end up being "bar[foo]".
4444
*

libraries/src/Form/Field/TransitionField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class TransitionField extends GroupedlistField
5353
*
5454
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
5555
* @param mixed $value The form field value to validate.
56-
* @param string $group The field name group control value. This acts as as an array container for the field.
56+
* @param string $group The field name group control value. This acts as an array container for the field.
5757
* For example if the field has name="foo" and the group value is set to "bar" then the
5858
* full field name would end up being "bar[foo]".
5959
*

libraries/src/Form/Field/WorkflowconditionField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class WorkflowconditionField extends ListField
5353
*
5454
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
5555
* @param mixed $value The form field value to validate.
56-
* @param string $group The field name group control value. This acts as as an array container for the field.
56+
* @param string $group The field name group control value. This acts as an array container for the field.
5757
* For example if the field has name="foo" and the group value is set to "bar" then the
5858
* full field name would end up being "bar[foo]".
5959
*

libraries/src/Form/Field/WorkflowstageField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class WorkflowstageField extends GroupedlistField
5353
*
5454
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
5555
* @param mixed $value The form field value to validate.
56-
* @param string $group The field name group control value. This acts as as an array container for the field.
56+
* @param string $group The field name group control value. This acts as an array container for the field.
5757
* For example if the field has name="foo" and the group value is set to "bar" then the
5858
* full field name would end up being "bar[foo]".
5959
*

libraries/src/Form/FormField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ public function setForm(Form $form)
616616
*
617617
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
618618
* @param mixed $value The form field value to validate.
619-
* @param string $group The field name group control value. This acts as as an array container for the field.
619+
* @param string $group The field name group control value. This acts as an array container for the field.
620620
* For example if the field has name="foo" and the group value is set to "bar" then the
621621
* full field name would end up being "bar[foo]".
622622
*

libraries/src/Form/FormRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class FormRule
5858
*
5959
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
6060
* @param mixed $value The form field value to validate.
61-
* @param string $group The field name group control value. This acts as as an array container for the field.
61+
* @param string $group The field name group control value. This acts as an array container for the field.
6262
* For example if the field has name="foo" and the group value is set to "bar" then the
6363
* full field name would end up being "bar[foo]".
6464
* @param ?Registry $input An optional Registry object with the entire data set to validate against the entire form.

libraries/src/Form/Rule/SubformRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class SubformRule extends FormRule
3030
*
3131
* @param \SimpleXMLElement $element The SimpleXMLElement object representing the `<field>` tag for the form field object.
3232
* @param mixed $value The form field value to validate.
33-
* @param string $group The field name group control value. This acts as as an array container for the field.
33+
* @param string $group The field name group control value. This acts as an array container for the field.
3434
* For example if the field has name="foo" and the group value is set to "bar" then the
3535
* full field name would end up being "bar[foo]".
3636
* @param ?Registry $input An optional Registry object with the entire data set to validate against the entire form.

0 commit comments

Comments
 (0)