| Data-Faker documentation | Contained in the Data-Faker distribution. |
Data::Faker::PhoneNumber - Data::Faker plugin
See Data::Faker
Return a fake phone number.
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::PhoneNumber; use vars qw($VERSION); $VERSION = '0.07'; use base 'Data::Faker';
__PACKAGE__->register_plugin( phone_number => [ '###-###-####', '(###)###-####', '1-###-###-####', '###.###.####', '###-###-####', '(###)###-####', '1-###-###-####', '###.###.####', '###-###-#### x###', '(###)###-#### x###', '1-###-###-#### x###', '###.###.#### x###', '###-###-#### x####', '(###)###-#### x####', '1-###-###-#### x####', '###.###.#### x####', '###-###-#### x#####', '(###)###-#### x#####', '1-###-###-#### x#####', '###.###.#### x#####', ], );
1;