NAME
Faker::Plugin::EnUs::PersonFormalName - Person Formal Name
ABSTRACT
Person Formal Name for Faker
VERSION
1.16
SYNOPSIS
package main;
use Faker::Plugin::EnUs::PersonFormalName;
my $plugin = Faker::Plugin::EnUs::PersonFormalName->new;
# bless(..., "Faker::Plugin::EnUs::PersonFormalName")
DESCRIPTION
This package provides methods for generating fake data for person formal name.
INHERITS
This package inherits behaviors from:
METHODS
This package provides the following methods:
execute
execute(HashRef $data) (Str)
The execute method returns a returns a random fake person formal name.
Since 1.10
- execute example 1
-
package main; use Faker::Plugin::EnUs::PersonFormalName; my $plugin = Faker::Plugin::EnUs::PersonFormalName->new; # bless(..., "Faker::Plugin::EnUs::PersonFormalName") # my $result = $plugin->execute; # "Russel Krajcik"; # my $result = $plugin->execute; # "Miss Josephine Forest Beier DDS"; # my $result = $plugin->execute; # "Duncan Mann";
new
new(HashRef $data) (Plugin)
The new method returns a new instance of the class.
Since 1.10