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

Merge pull request #108 from rumpl/patch-1

Latitude domain
This commit is contained in:
Francois Zaninotto 2013-02-11 02:18:46 -08:00
commit b013b01309

View File

@ -108,7 +108,7 @@ class Address extends \Faker\Provider\Base
*/
public static function latitude()
{
return number_format(mt_rand(-180000000, 180000000)/1000000, 6);
return number_format(mt_rand(-90000000, 90000000)/1000000, 6);
}
/**