. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * TIME_VALUE := {Size=1:12} * [ hh:mm:ss.fs ] * The time of a specific event, usually a computer-timed event, where: * hh = hours on a 24-hour clock * mm = minutes * ss = seconds (optional) * fs = decimal fraction of a second (optional) */ class TimeValue extends AbstractElement { protected const PATTERN = '([01][0-9]|2[0-3]):[0-5][0-9](:[0-5][0-9])?'; }