From 8079d8e95f16160216fcfbfb60ea430c033e2d58 Mon Sep 17 00:00:00 2001 From: Francois Zaninotto Date: Mon, 21 Oct 2013 23:20:00 +0200 Subject: [PATCH] Add Payment and Image providers by default Also, reordered default providers for easier maintenance --- src/Faker/Factory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Faker/Factory.php b/src/Faker/Factory.php index 1c588c65..afe47f94 100644 --- a/src/Faker/Factory.php +++ b/src/Faker/Factory.php @@ -6,7 +6,7 @@ class Factory { const DEFAULT_LOCALE = 'en_US'; - protected static $defaultProviders = array('Person', 'Address', 'PhoneNumber', 'Company', 'Lorem', 'Internet', 'DateTime', 'Miscellaneous', 'UserAgent', 'Uuid', 'File', 'Color'); + protected static $defaultProviders = array('Address', 'Color', 'Company', 'DateTime', 'File', 'Image', 'Internet', 'Lorem', 'Miscellaneous', 'Payment', 'Person', 'PhoneNumber', 'UserAgent', 'Uuid'); public static function create($locale = self::DEFAULT_LOCALE) {