CommerceGuys\Addressing\AddressFormat\AddressField::getTokens PHP Method

getTokens() public static method

Gets the tokens (values prefixed with %).
public static getTokens ( ) : array
return array An array of tokens, keyed by constant.
    public static function getTokens()
    {
        $tokens = array_map(function ($field) {
            return '%' . $field;
        }, static::getAll());
        return $tokens;
    }
AddressField