<?php
final class Country
{
    $[\Validator\Custom(static function ($countryCode) {
        return \preg_match('/^[a-z]{2,3}$/', $countryCode);
    })]
    public string $countryCode;
}
?>