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

added uuid to default providers

This commit is contained in:
Maik Penz 2013-02-06 09:14:15 +01:00
parent d24287d67a
commit 64cb2172c2
2 changed files with 5 additions and 1 deletions

View File

@ -173,6 +173,10 @@ Each of the generator properties (like `name`, `address`, and `lorem`) are calle
opera // 'Opera/8.25 (Windows NT 5.1; en-US) Presto/2.9.188 Version/10.00'
internetExplorer // 'Mozilla/5.0 (compatible; MSIE 7.0; Windows 98; Win 9x 4.90; Trident/3.0)'
### `Faker\Provider\Uuid`
uuid // '7e57d004-2b97-0e7a-b45f-5387367791cd'
## Localization
`Faker\Factory` can take a locale as an argument, to return localized data. If no localized provider is found, the factory fallbacks to the default locale (en_EN).

View File

@ -6,7 +6,7 @@ class Factory
{
const DEFAULT_LOCALE = 'en_US';
protected static $defaultProviders = array('Person', 'Address', 'PhoneNumber', 'Company', 'Lorem', 'Internet', 'DateTime', 'Miscellaneous', 'UserAgent');
protected static $defaultProviders = array('Person', 'Address', 'PhoneNumber', 'Company', 'Lorem', 'Internet', 'DateTime', 'Miscellaneous', 'UserAgent', 'Uuid');
public static function create($locale = self::DEFAULT_LOCALE)
{