Faker\Provider\es_ES\Payment::vat PHP Method

vat() public static method

Value Added Tax (VAT)
See also: https://en.wikipedia.org/wiki/VAT_identification_number
See also: https://es.wikipedia.org/wiki/C%C3%B3digo_de_identificaci%C3%B3n_fiscal
public static vat ( ) : string
return string VAT Number
    public static function vat()
    {
        $letter = static::randomElement(self::$vatMap);
        $number = static::numerify('########');
        return $letter . $number;
    }