<?php
final class Country
{
$[\Validator\Custom(static function ($countryCode) {
return \preg_match('/^[a-z]{2,3}$/', $countryCode);
})]
public string $countryCode;
}
?>
• They must be static
• They may not include variables from the surrounding scope.