Files
wyczarujprezent.pl/modules/ps_eventbus/src/Formatter/DateFormatter.php
2024-10-28 22:14:22 +01:00

24 lines
392 B
PHP

<?php
namespace PrestaShop\Module\PsEventbus\Formatter;
use DateTime;
use Exception;
class DateFormatter
{
/**
* @param string $date
*
* @return string
*/
public function convertToIso8061($date)
{
try {
return (new DateTime($date))->format(DateTime::ISO8601);
} catch (Exception $e) {
return $date;
}
}
}