NAME

Faker::Plugin::EsEs::AddressCitySuffix - Address City Suffix

ABSTRACT

Address City Suffix for Faker

VERSION

1.16

SYNOPSIS

package main;

use Faker::Plugin::EsEs::AddressCitySuffix;

my $plugin = Faker::Plugin::EsEs::AddressCitySuffix->new;

# bless(..., "Faker::Plugin::EsEs::AddressCitySuffix")

DESCRIPTION

This package provides methods for generating fake data for address city suffix.

INHERITS

This package inherits behaviors from:

Faker::Plugin::EsEs

METHODS

This package provides the following methods:

execute

execute(HashRef $data) (Str)

The execute method returns a returns a random fake address city suffix.

Since 1.10

execute example 1
package main;

use Faker::Plugin::EsEs::AddressCitySuffix;

my $plugin = Faker::Plugin::EsEs::AddressCitySuffix->new;

# bless(..., "Faker::Plugin::EsEs::AddressCitySuffix")

# my $result = $plugin->execute;

# 'del Mirador';

# my $result = $plugin->execute;

# 'de Arriba';

# my $result = $plugin->execute;

# 'Alta';

new

new(HashRef $data) (Plugin)

The new method returns a new instance of the class.

Since 1.10

new example 1
package main;

use Faker::Plugin::EsEs::AddressCitySuffix;

my $plugin = Faker::Plugin::EsEs::AddressCitySuffix->new;

# bless(..., "Faker::Plugin::EsEs::AddressCitySuffix")