1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-03-20 23:39:51 +01:00

More specific return types to auto complete

This commit is contained in:
ThallisPHP 2013-09-04 00:55:31 -03:00
parent acff8d0ce1
commit b00515d647

View File

@ -23,8 +23,8 @@ namespace Faker;
* @property string postcode
* @property string address
* @property string country
* @property string latitude
* @property string longitude
* @property float latitude
* @property float longitude
*
* @property string phoneNumber
*
@ -55,7 +55,7 @@ namespace Faker;
* @property string ipv4
* @property string ipv6
*
* @property string unixTime
* @property int unixTime
* @property string dateTime
* @property string dateTimeAD
* @property string iso8601
@ -64,12 +64,12 @@ namespace Faker;
* @property string dateTimeThisYear
* @property string dateTimeThisMonth
* @property string amPm
* @property string dayOfMonth
* @property string dayOfWeek
* @property string month
* @property int dayOfMonth
* @property int dayOfWeek
* @property int month
* @property string monthName
* @property string year
* @property string century
* @property int year
* @property int century
* @property string timezone
* @method string date
* @method string time
@ -81,13 +81,13 @@ namespace Faker;
* @property string locale
* @property string countryCode
* @property string languageCode
* @method string boolean
* @method boolean boolean
*
* @property string randomDigit
* @property string randomDigitNotNull
* @property int randomDigit
* @property int randomDigitNotNull
* @property string randomLetter
* @method string randomNumber
* @method string randomFloat
* @method int randomNumber
* @method float randomFloat
* @method string randomElement
* @method string numerify
* @method string lexify