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

Merge pull request #307 from hugofonseca/master

fix generator doc block #303
This commit is contained in:
Francois Zaninotto 2014-04-21 22:53:35 +02:00
commit 3a03f26ea3

View File

@ -3,38 +3,38 @@
namespace Faker;
/**
* @property string name
* @property string firstName
* @property string lastName
* @property string $name
* @property string $firstName
* @property string $lastName
*
* @property string citySuffix
* @property string streetSuffix
* @property string buildingNumber
* @property string city
* @property string streetName
* @property string streetAddress
* @property string postcode
* @property string address
* @property string country
* @property float latitude
* @property float longitude
* @property string $citySuffix
* @property string $streetSuffix
* @property string $buildingNumber
* @property string $city
* @property string $streetName
* @property string $streetAddress
* @property string $postcode
* @property string $address
* @property string $country
* @property float $latitude
* @property float $longitude
*
* @property string ean13
* @property string ean8
* @property string $ean13
* @property string $ean8
*
* @property string phoneNumber
* @property string $phoneNumber
*
* @property string company
* @property string companySuffix
* @property string $company
* @property string $companySuffix
*
* @property string creditCardType
* @property string creditCardNumber
* @property string creditCardExpirationDate
* @property string creditCardExpirationDateString
* @property string creditCardDetails
* @property string bankAccountNumber
* @property string $creditCardType
* @property string $creditCardNumber
* @property string $creditCardExpirationDate
* @property string $creditCardExpirationDateString
* @property string $creditCardDetails
* @property string $bankAccountNumber
*
* @property string word
* @property string $word
* @method string words()
* @method string sentence()
* @method string sentences()
@ -44,51 +44,51 @@ namespace Faker;
*
* @method string realText()
*
* @property string email
* @property string safeEmail
* @property string freeEmail
* @property string companyEmail
* @property string freeEmailDomain
* @property string safeEmailDomain
* @property string userName
* @property string domainName
* @property string domainWord
* @property string tld
* @property string url
* @property string ipv4
* @property string ipv6
* @property string $email
* @property string $safeEmail
* @property string $freeEmail
* @property string $companyEmail
* @property string $freeEmailDomain
* @property string $safeEmailDomain
* @property string $userName
* @property string $domainName
* @property string $domainWord
* @property string $tld
* @property string $url
* @property string $ipv4
* @property string $ipv6
*
* @property int unixTime
* @property \DateTime dateTime
* @property \DateTime dateTimeAD
* @property string iso8601
* @property \DateTime dateTimeThisCentury
* @property \DateTime dateTimeThisDecade
* @property \DateTime dateTimeThisYear
* @property \DateTime dateTimeThisMonth
* @property string amPm
* @property int dayOfMonth
* @property int dayOfWeek
* @property int month
* @property string monthName
* @property int year
* @property int century
* @property string timezone
* @property int $unixTime
* @property \DateTime $dateTime
* @property \DateTime $dateTimeAD
* @property string $iso8601
* @property \DateTime $dateTimeThisCentury
* @property \DateTime $dateTimeThisDecade
* @property \DateTime $dateTimeThisYear
* @property \DateTime $dateTimeThisMonth
* @property string $amPm
* @property int $dayOfMonth
* @property int $dayOfWeek
* @property int $month
* @property string $monthName
* @property int $year
* @property int $century
* @property string $timezone
* @method string date()
* @method string time()
* @method \DateTime dateTimeBetween()
*
* @property string md5
* @property string sha1
* @property string sha256
* @property string locale
* @property string countryCode
* @property string languageCode
* @property string $md5
* @property string $sha1
* @property string $sha256
* @property string $locale
* @property string $countryCode
* @property string $languageCode
* @method boolean boolean()
*
* @property int randomDigit
* @property int randomDigitNotNull
* @property string randomLetter
* @property int $randomDigit
* @property int $randomDigitNotNull
* @property string $randomLetter
* @method int randomNumber()
* @method mixed randomKey()
* @method int numberBetween()
@ -102,25 +102,25 @@ namespace Faker;
* @method mixed optional()
* @method UniqueGenerator unique()
*
* @property string userAgent
* @property string chrome
* @property string firefox
* @property string safari
* @property string opera
* @property string internetExplorer
* @property string $userAgent
* @property string $chrome
* @property string $firefox
* @property string $safari
* @property string $opera
* @property string $internetExplorer
*
* @property string uuid
* @property string $uuid
*
* @property string mimeType
* @property string fileExtension
* @property string $mimeType
* @property string $fileExtension
*
* @property string hexcolor
* @property string safeHexColor
* @property string rgbcolor
* @property string rgbColorAsArray
* @property string rgbCssColor
* @property string safeColorName
* @property string colorName
* @property string $hexcolor
* @property string $safeHexColor
* @property string $rgbcolor
* @property string $rgbColorAsArray
* @property string $rgbCssColor
* @property string $safeColorName
* @property string $colorName
*/
class Generator
{