File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ class FormFieldRegistry
22
22
{
23
23
private $ fields = [];
24
24
25
- private $ base ;
25
+ private $ base = '' ;
26
26
27
27
/**
28
28
* Adds a field to the registry.
@@ -47,7 +47,7 @@ public function add(FormField $field)
47
47
}
48
48
49
49
/**
50
- * Removes a field and its children from the registry.
50
+ * Removes a field based on the fully qualifed name and its children from the registry.
51
51
*/
52
52
public function remove (string $ name )
53
53
{
@@ -64,7 +64,7 @@ public function remove(string $name)
64
64
}
65
65
66
66
/**
67
- * Returns the value of the field and its children.
67
+ * Returns the value of the field based on the fully qualifed name and its children.
68
68
*
69
69
* @return mixed The value of the field
70
70
*
@@ -86,7 +86,7 @@ public function &get(string $name)
86
86
}
87
87
88
88
/**
89
- * Tests whether the form has the given field.
89
+ * Tests whether the form has the given field based on the fully qualified name .
90
90
*
91
91
* @return bool Whether the form has the given field
92
92
*/
@@ -102,7 +102,7 @@ public function has(string $name): bool
102
102
}
103
103
104
104
/**
105
- * Set the value of a field and its children.
105
+ * Set the value of a field based on the fully qualified name and its children.
106
106
*
107
107
* @param mixed $value The value
108
108
*
You can’t perform that action at this time.
0 commit comments