Skip to content

Commit 1f4a877

Browse files
committed
MAGETWO-63288: Remove dependency on CMS module
1 parent fd33eb6 commit 1f4a877

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

app/code/Magento/Analytics/Ui/DataProvider/DummyDataProvider.php

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ public function getMeta()
118118
* @param string $fieldName
119119
*
120120
* @return array
121+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
121122
*/
122123
public function getFieldMetaInfo($fieldSetName, $fieldName)
123124
{
@@ -130,6 +131,7 @@ public function getFieldMetaInfo($fieldSetName, $fieldName)
130131
* @param string $fieldSetName
131132
*
132133
* @return array
134+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
133135
*/
134136
public function getFieldSetMetaInfo($fieldSetName)
135137
{
@@ -140,6 +142,7 @@ public function getFieldSetMetaInfo($fieldSetName)
140142
* @param string $fieldSetName
141143
*
142144
* @return array
145+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
143146
*/
144147
public function getFieldsMetaInfo($fieldSetName)
145148
{
@@ -182,9 +185,11 @@ public function getData()
182185
* @param \Magento\Framework\Api\Filter $filter
183186
*
184187
* @return void
188+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
185189
*/
186190
public function addFilter(\Magento\Framework\Api\Filter $filter)
187-
{}
191+
{
192+
}
188193

189194
/**
190195
* Add ORDER BY to the end or to the beginning
@@ -193,9 +198,11 @@ public function addFilter(\Magento\Framework\Api\Filter $filter)
193198
* @param string $direction
194199
*
195200
* @return void
201+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
196202
*/
197203
public function addOrder($field, $direction)
198-
{}
204+
{
205+
}
199206

200207
/**
201208
* Set Query limit
@@ -204,9 +211,11 @@ public function addOrder($field, $direction)
204211
* @param int $size
205212
*
206213
* @return void
214+
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
207215
*/
208216
public function setLimit($offset, $size)
209-
{}
217+
{
218+
}
210219

211220
/**
212221
* Returns search criteria

0 commit comments

Comments
 (0)