'hh', 'H' => 'HH', // minutes 'i' => 'mm', // am/pm to AM/PM 'A' => 'a' ]; public function convert(string $format): string { return strtr($format, self::$formatConvertRules); } }