. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * DATE_VALUE := {Size=1:35} */ class DateValueExact extends DateValue { protected const PATTERN = '(0[1-9]|[12][0-9]|3[0-1]) (JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC) [0-9][0-9][0-9][0-9]'; }