Files
data-collection-terminal/vendor/danharrin/date-format-converter/src/helpers.php

10 lines
195 B
PHP

<?php
use DanHarrin\DateFormatConverter\Converter;
if (! function_exists('convert_date_format')) {
function convert_date_format($format)
{
return new Converter($format);
}
}