@@ -118,6 +118,7 @@ public function getMeta()
118
118
* @param string $fieldName
119
119
*
120
120
* @return array
121
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
121
122
*/
122
123
public function getFieldMetaInfo ($ fieldSetName , $ fieldName )
123
124
{
@@ -130,6 +131,7 @@ public function getFieldMetaInfo($fieldSetName, $fieldName)
130
131
* @param string $fieldSetName
131
132
*
132
133
* @return array
134
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
133
135
*/
134
136
public function getFieldSetMetaInfo ($ fieldSetName )
135
137
{
@@ -140,6 +142,7 @@ public function getFieldSetMetaInfo($fieldSetName)
140
142
* @param string $fieldSetName
141
143
*
142
144
* @return array
145
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
143
146
*/
144
147
public function getFieldsMetaInfo ($ fieldSetName )
145
148
{
@@ -182,9 +185,11 @@ public function getData()
182
185
* @param \Magento\Framework\Api\Filter $filter
183
186
*
184
187
* @return void
188
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
185
189
*/
186
190
public function addFilter (\Magento \Framework \Api \Filter $ filter )
187
- {}
191
+ {
192
+ }
188
193
189
194
/**
190
195
* Add ORDER BY to the end or to the beginning
@@ -193,9 +198,11 @@ public function addFilter(\Magento\Framework\Api\Filter $filter)
193
198
* @param string $direction
194
199
*
195
200
* @return void
201
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
196
202
*/
197
203
public function addOrder ($ field , $ direction )
198
- {}
204
+ {
205
+ }
199
206
200
207
/**
201
208
* Set Query limit
@@ -204,9 +211,11 @@ public function addOrder($field, $direction)
204
211
* @param int $size
205
212
*
206
213
* @return void
214
+ * @SuppressWarnings(PHPMD.UnusedFormalParameter)
207
215
*/
208
216
public function setLimit ($ offset , $ size )
209
- {}
217
+ {
218
+ }
210
219
211
220
/**
212
221
* Returns search criteria
0 commit comments