1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-24 01:09:50 +01:00

Add ZA phone patterns

This commit is contained in:
David Faux 2013-12-04 12:29:11 +02:00
parent d76b3ce885
commit 434d0f0afc

View File

@ -0,0 +1,17 @@
<?php
namespace Faker\Provider\en_US;
class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $formats = array(
'+27(##)##########',
'+(#)##########',
'08#########',
'07########',
'0##-###-####',
'(0##)###-####',
'0-800-###-####',
'### ####'
);
}