Current path: home/webdevt/www/schtroumpf.fr/modules/ps_eventbus/src/Formatter/
?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_eventbus/src
<?php
namespace PrestaShop\Module\PsEventbus\Formatter;
class DateFormatter
{
/**
* @param string $date
*
* @return string
*/
public function convertToIso8061($date)
{
try {
return (new \DateTime($date))->format(\DateTime::ISO8601);
} catch (\Exception $e) {
return $date;
}
}
}