convertPhpFormatToLuxon($phpDateFormat); $timeFormat = $formatter->convertPhpFormatToLuxon($phpTimeFormat); } else { $dateFormat = $phpDateFormat; $timeFormat = $phpTimeFormat; } return new DateConfiguration( timezone: date_default_timezone_get(), formats: new DateFormats( date: $dateFormat, time: $timeFormat, datetime: $dateFormat . ' ' . $timeFormat, ), ); } }