IsoCodes\Vat::isValidCountryCode PHP Method

isValidCountryCode() public static method

Returns true if value is valid country code, false otherwise.
public static isValidCountryCode ( string $vat ) : boolean
$vat string
return boolean
    public static function isValidCountryCode($vat)
    {
        return isset(self::$patterns[$vat]);
    }