@@ -82,9 +82,7 @@ public function __construct(
82
82
}
83
83
84
84
/**
85
- * Get data
86
- *
87
- * @return mixed
85
+ * @inheritdoc
88
86
*/
89
87
public function getData ()
90
88
{
@@ -97,10 +95,7 @@ public function getData()
97
95
}
98
96
99
97
/**
100
- * Get Meta
101
- *
102
- * @return array
103
- * @throws \Magento\Framework\Exception\LocalizedException
98
+ * @inheritdoc
104
99
*/
105
100
public function getMeta ()
106
101
{
@@ -112,31 +107,23 @@ public function getMeta()
112
107
}
113
108
114
109
/**
115
- * Get Data Provider name
116
- *
117
- * @return string
110
+ * @inheritdoc
118
111
*/
119
112
public function getName ()
120
113
{
121
114
return $ this ->name ;
122
115
}
123
116
124
117
/**
125
- * Get config data
126
- *
127
- * @return mixed
118
+ * @inheritdoc
128
119
*/
129
120
public function getConfigData ()
130
121
{
131
122
return $ this ->data ['config ' ] ?? [];
132
123
}
133
124
134
125
/**
135
- * Set config data
136
- *
137
- * @param mixed $config
138
- *
139
- * @return bool
126
+ * @inheritdoc
140
127
*/
141
128
public function setConfigData ($ config )
142
129
{
@@ -146,117 +133,76 @@ public function setConfigData($config)
146
133
}
147
134
148
135
/**
149
- * Get Field Meta Info
150
- *
151
- * @param string $fieldSetName
152
- * @param string $fieldName
153
- *
154
- * @return array
155
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
136
+ * @inheritdoc
156
137
*/
157
138
public function getFieldMetaInfo ($ fieldSetName , $ fieldName )
158
139
{
159
140
return [];
160
141
}
161
142
162
143
/**
163
- * Get Field Set Meta Info
164
- *
165
- * @param string $fieldSetName
166
- *
167
- * @return array
168
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
144
+ * @inheritdoc
169
145
*/
170
146
public function getFieldSetMetaInfo ($ fieldSetName )
171
147
{
172
148
return [];
173
149
}
174
150
175
151
/**
176
- * Get Fields Meta Info
177
- *
178
- * @param string $fieldSetName
179
- *
180
- * @return array
181
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
152
+ * @inheritdoc
182
153
*/
183
154
public function getFieldsMetaInfo ($ fieldSetName )
184
155
{
185
156
return [];
186
157
}
187
158
188
159
/**
189
- * Get Primary Field Name
190
- *
191
- * @return string
160
+ * @inheritdoc
192
161
*/
193
162
public function getPrimaryFieldName ()
194
163
{
195
164
return 'release_notification ' ;
196
165
}
197
166
198
167
/**
199
- * Get Request Field Name
200
- *
201
- * @return string
168
+ * @inheritdoc
202
169
*/
203
170
public function getRequestFieldName ()
204
171
{
205
172
return 'release_notification ' ;
206
173
}
207
174
208
175
/**
209
- * Add Filter
210
- *
211
- * @param \Magento\Framework\Api\Filter $filter
212
- *
213
- * @return void
214
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
176
+ * @inheritdoc
215
177
*/
216
178
public function addFilter (\Magento \Framework \Api \Filter $ filter )
217
179
{
218
180
}
219
181
220
182
/**
221
- * Add Order
222
- *
223
- * @param string $field
224
- * @param string $direction
225
- *
226
- * @return void
227
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
183
+ * @inheritdoc
228
184
*/
229
185
public function addOrder ($ field , $ direction )
230
186
{
231
187
}
232
188
233
189
/**
234
- * Set Limit
235
- *
236
- * @param int $offset
237
- * @param int $size
238
- *
239
- * @return void
240
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
190
+ * @inheritdoc
241
191
*/
242
192
public function setLimit ($ offset , $ size )
243
193
{
244
194
}
245
195
246
196
/**
247
- * Get Search Criteria
248
- *
249
- * @return SearchCriteriaInterface
197
+ * @inheritdoc
250
198
*/
251
199
public function getSearchCriteria ()
252
200
{
253
201
return $ this ->searchCriteria ;
254
202
}
255
203
256
204
/**
257
- * Get Search Result
258
- *
259
- * @return SearchResultInterface
205
+ * @inheritdoc
260
206
*/
261
207
public function getSearchResult ()
262
208
{
0 commit comments