| Data-Faker documentation | Contained in the Data-Faker distribution. |
Data::Faker::Company - Data::Faker plugin
See Data::Faker
Return a fake company name.
Return a company suffix (Inc, LLC, etc).
Jason Kohles, <email@jasonkohles.com>
Copyright 2004-2005 by Jason Kohles
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Data-Faker documentation | Contained in the Data-Faker distribution. |
package Data::Faker::Company; use vars qw($VERSION); $VERSION = '0.07'; use base 'Data::Faker'; use Data::Faker::Name;
__PACKAGE__->register_plugin('company' => [ '$last_name $company_suffix', '$last_name-$last_name', '$last_name, $last_name and $last_name', ]);
__PACKAGE__->register_plugin('company_suffix' => [ 'Inc', 'and Sons', 'LLC', 'Group' ]);
1;