We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4b5e99 + b31a9cf commit f8e1b2bCopy full SHA for f8e1b2b
app/code/Magento/Wishlist/Block/AbstractBlock.php
@@ -231,9 +231,21 @@ public function hasDescription($item)
231
* Retrieve formated Date
232
*
233
* @param string $date
234
+ * @deprecated
235
* @return string
236
*/
237
public function getFormatedDate($date)
238
+ {
239
+ return $this->getFormattedDate($date);
240
+ }
241
+
242
+ /**
243
+ * Retrieve formatted Date
244
+ *
245
+ * @param string $date
246
+ * @return string
247
+ */
248
+ public function getFormattedDate($date)
249
{
250
return $this->formatDate($date, \IntlDateFormatter::MEDIUM);
251
}
0 commit comments