@@ -84,10 +84,8 @@ public function getDecoratedFactory()
84
84
/**
85
85
* {@inheritdoc}
86
86
*
87
- * @param callable|Cache\ChoiceValue|null $value The callable or static option for
88
- * generating the choice values
89
- * @param callable|Cache\ChoiceFilter|null $filter The callable or static option for
90
- * filtering the choices
87
+ * @param mixed $value
88
+ * @param mixed $filter
91
89
*/
92
90
public function createListFromChoices (iterable $ choices , $ value = null /*, $filter = null*/ )
93
91
{
@@ -127,12 +125,8 @@ public function createListFromChoices(iterable $choices, $value = null/*, $filte
127
125
/**
128
126
* {@inheritdoc}
129
127
*
130
- * @param ChoiceLoaderInterface|Cache\ChoiceLoader $loader The loader or static loader to load
131
- * the choices lazily
132
- * @param callable|Cache\ChoiceValue|null $value The callable or static option for
133
- * generating the choice values
134
- * @param callable|Cache\ChoiceFilter|null $filter The callable or static option for
135
- * filtering the choices
128
+ * @param mixed $value
129
+ * @param mixed $filter
136
130
*/
137
131
public function createListFromLoader (ChoiceLoaderInterface $ loader , $ value = null /*, $filter = null*/ )
138
132
{
@@ -174,12 +168,12 @@ public function createListFromLoader(ChoiceLoaderInterface $loader, $value = nul
174
168
/**
175
169
* {@inheritdoc}
176
170
*
177
- * @param array|callable|Cache\PreferredChoice|null $preferredChoices The preferred choices
178
- * @param callable|false|Cache\ChoiceLabel|null $label The option or static option generating the choice labels
179
- * @param callable|Cache\ChoiceFieldName|null $index The option or static option generating the view indices
180
- * @param callable|Cache\GroupBy|null $groupBy The option or static option generating the group names
181
- * @param array|callable|Cache\ChoiceAttr|null $attr The option or static option generating the HTML attributes
182
- * @param array|callable|Cache\ChoiceTranslationParameters $labelTranslationParameters The parameters used to translate the choice labels
171
+ * @param mixed $preferredChoices
172
+ * @param mixed $label
173
+ * @param mixed $index
174
+ * @param mixed $groupBy
175
+ * @param mixed $attr
176
+ * @param mixed $labelTranslationParameters
183
177
*/
184
178
public function createView (ChoiceListInterface $ list , $ preferredChoices = null , $ label = null , $ index = null , $ groupBy = null , $ attr = null /*, $labelTranslationParameters = []*/ )
185
179
{
0 commit comments