Files
chaffe-theme/helpers/DateFormatter.php
2025-05-05 16:37:15 -07:00

16 lines
288 B
PHP

<?php
namespace Helpers;
class DateFormatter
{
public static function monthDayYear()
{
return function ($template, $context, $args, $source) {
$dateString = strtotime($context->get($args));
return date("M d, Y", $dateString);
};
}
}