Passed
Push — master ( 7a4b4b...fcffd2 )
by Chauncey
02:20
created
src/Charcoal/Ui/FormGroup/FormGroupTrait.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 
75 75
     /**
76 76
      * @param FormInputBuilder $builder The builder, to create customized form input objects.
77
-     * @return FormGroupInterface Chainable
77
+     * @return FormGroupTrait Chainable
78 78
      */
79 79
     protected function setFormInputBuilder(FormInputBuilder $builder)
80 80
     {
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
     /**
86 86
      * @param callable $cb The input callback.
87
-     * @return FormGroupInterface Chainable
87
+     * @return FormGroupTrait Chainable
88 88
      */
89 89
     public function setInputCallback(callable $cb)
90 90
     {
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 
95 95
     /**
96 96
      * @param FormInterface $form The parent form object.
97
-     * @return FormGroupInterface Chainable
97
+     * @return FormGroupTrait Chainable
98 98
      */
99 99
     public function setForm(FormInterface $form)
100 100
     {
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
 
113 113
     /**
114 114
      * @param string $mode The l10n mode.
115
-     * @return FormGroupInterface Chainable
115
+     * @return FormGroupTrait Chainable
116 116
      */
117 117
     public function setL10nMode($mode)
118 118
     {
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 
131 131
     /**
132 132
      * @param array $inputs The group inputs.
133
-     * @return FormGroupInterface Chainable
133
+     * @return FormGroupTrait Chainable
134 134
      */
135 135
     public function setInputs(array $inputs)
136 136
     {
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
      * @param string                   $inputIdent The input identifier.
146 146
      * @param array|FormInputInterface $input      The input object or structure.
147 147
      * @throws InvalidArgumentException If the ident argument is not a string or if the input is not valid.
148
-     * @return FormGroupInterface Chainable
148
+     * @return FormGroupTrait Chainable
149 149
      */
150 150
     public function addInput($inputIdent, $input)
151 151
     {
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * Form Input generator.
176 176
      *
177 177
      * @param callable $inputCallback Optional. Input callback.
178
-     * @return FormGroupInterface[]|Generator
178
+     * @return \Generator
179 179
      */
180 180
     public function inputs(callable $inputCallback = null)
181 181
     {
Please login to merge, or discard this patch.
src/Charcoal/Ui/ConditionalizableTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
     /**
73 73
      * Resolve the conditional logic.
74 74
      *
75
-     * @param  mixed $condition The condition.
75
+     * @param  boolean|string $condition The condition.
76 76
      * @return boolean|null
77 77
      */
78 78
     final protected function parseConditionalLogic($condition)
Please login to merge, or discard this patch.
src/Charcoal/Ui/Form/FormTrait.php 1 patch
Doc Comments   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 
112 112
     /**
113 113
      * @param FactoryInterface $factory A factory, to create customized form gorup objects.
114
-     * @return FormInterface Chainable
114
+     * @return FormTrait Chainable
115 115
      */
116 116
     public function setFormGroupFactory(FactoryInterface $factory)
117 117
     {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 
138 138
     /**
139 139
      * @param callable $cb The group callback.
140
-     * @return FormInterface Chainable
140
+     * @return FormTrait Chainable
141 141
      */
142 142
     public function setGroupCallback(callable $cb)
143 143
     {
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
     /**
150 150
      * @param string $action The "action" value, typically a URL.
151 151
      * @throws InvalidArgumentException If the action argument is not a string.
152
-     * @return FormInterface Chainable
152
+     * @return FormTrait Chainable
153 153
      */
154 154
     public function setAction($action)
155 155
     {
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      *
177 177
      * @param string $method Either "post" or "get".
178 178
      * @throws InvalidArgumentException If the method is not post or get.
179
-     * @return FormInterface Chainable
179
+     * @return FormTrait Chainable
180 180
      */
181 181
     public function setMethod($method)
182 182
     {
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
     /**
203 203
      * @param string $mode The l10n mode.
204
-     * @return FormInterface Chainable
204
+     * @return FormTrait Chainable
205 205
      */
206 206
     public function setL10nMode($mode)
207 207
     {
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
      * Set the object's form groups.
223 223
      *
224 224
      * @param array $groups A collection of group structures.
225
-     * @return FormInterface Chainable
225
+     * @return FormTrait Chainable
226 226
      */
227 227
     public function setGroups(array $groups)
228 228
     {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
      * @param  string                   $groupIdent The group identifier.
280 280
      * @param  array|FormGroupInterface $group      The group object or structure.
281 281
      * @throws InvalidArgumentException If the identifier is not a string or the group is invalid.
282
-     * @return FormInterface Chainable
282
+     * @return FormTrait Chainable
283 283
      */
284 284
     public function addGroup($groupIdent, $group)
285 285
     {
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
      * Retrieve the form groups.
400 400
      *
401 401
      * @param callable $groupCallback Optional callback applied to each form group.
402
-     * @return FormGroupInterface[]|Generator
402
+     * @return \Generator
403 403
      */
404 404
     public function groups(callable $groupCallback = null)
405 405
     {
@@ -520,7 +520,7 @@  discard block
 block discarded – undo
520 520
      *
521 521
      * @param string $mode Group display mode.
522 522
      * @throws InvalidArgumentException If the display mode is not a string.
523
-     * @return ObjectFormWidget Chainable.
523
+     * @return FormTrait Chainable.
524 524
      */
525 525
     public function setGroupDisplayMode($mode)
526 526
     {
@@ -561,7 +561,7 @@  discard block
 block discarded – undo
561 561
 
562 562
     /**
563 563
      * @param array $formData The (pre-populated) form data, as [$key=>$val] array.
564
-     * @return FormInterface Chainable
564
+     * @return FormTrait Chainable
565 565
      */
566 566
     public function setFormData(array $formData)
567 567
     {
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
      * @param string $key The form data key, or poperty identifier.
575 575
      * @param mixed  $val The form data value, for a given key.
576 576
      * @throws InvalidArgumentException If the key argument is not a string.
577
-     * @return FormInterface Chainable
577
+     * @return FormTrait Chainable
578 578
      */
579 579
     public function addFormData($key, $val)
580 580
     {
@@ -597,7 +597,7 @@  discard block
 block discarded – undo
597 597
     }
598 598
 
599 599
     /**
600
-     * @return FormWidget
600
+     * @return FormTrait
601 601
      */
602 602
     protected function formWidget()
603 603
     {
Please login to merge, or discard this patch.
src/Charcoal/Ui/Dashboard/DashboardTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
      * Retrieve the dashboard's widgets.
161 161
      *
162 162
      * @param callable $widgetCallback A callback applied to each widget.
163
-     * @return UiItemInterface[]|Generator
163
+     * @return \Generator
164 164
      */
165 165
     public function widgets(callable $widgetCallback = null)
166 166
     {
Please login to merge, or discard this patch.
src/Charcoal/Ui/MenuItem/AbstractMenuItem.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     }
134 134
 
135 135
     /**
136
-     * @return string
136
+     * @return \Charcoal\Translator\Translation|null
137 137
      */
138 138
     public function label()
139 139
     {
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      * Children (menu item) generator
205 205
      *
206 206
      * @param callable $childCallback Optional callback.
207
-     * @return MenuItemInterface[]
207
+     * @return \Generator
208 208
      */
209 209
     public function children(callable $childCallback = null)
210 210
     {
Please login to merge, or discard this patch.