NAME
Faker::Provider::Company - Faker Standard Company Provider
VERSION
version 0.10
SYNOPSIS
use Faker;
use Faker::Provider::Company;
my $faker = Faker->new;
my $company = Faker::Provider::Company->new(factory => $faker);
say $company->name;
DESCRIPTION
Faker::Provider::Company is a Faker provider which provides fake company data. Note: This is an early release available for testing and feedback and as such is subject to change.
METHODS
name
$company->name;
# Padberg Co.
# Russel Ltd.
# Murazik Co.
The name method generates a random ficticious company name.
name_suffix
$company->name_suffix;
# Ltd.
# Inc.
# Co.
The name_suffix method generates a random ficticious company name suffix.
AUTHOR
Al Newkirk <anewkirk@ana.io>
COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Al Newkirk.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.