Build & Deploy / build (push) Successful in 18s
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
90 lines
4.1 KiB
PHP
90 lines
4.1 KiB
PHP
<?php namespace Xefi\Faker\Container;
|
|
/**
|
|
* @method array wordsAsArray(int $words = 3)
|
|
* @method string words(int $words = 3)
|
|
* @method array sentencesAsArray(int $sentences = 3)
|
|
* @method string sentences(int $sentences = 3)
|
|
* @method array paragraphsAsArray(int $paragraphs = 3)
|
|
* @method string paragraphs(int $paragraphs = 3)
|
|
* @method ?string getLocale()
|
|
* @method int digit()
|
|
* @method int number(int $min, int $max)
|
|
* @method float float(float $min, float $max, int $decimals = 1)
|
|
* @method mixed letter()
|
|
* @method array|string shuffle(array|string $needle)
|
|
* @method string shuffleString(string $needle)
|
|
* @method array shuffleArray(array $needle)
|
|
* @method string convertCharacters(string $string)
|
|
* @method string semver()
|
|
* @method string emoji()
|
|
* @method string uuid()
|
|
* @method string ulid()
|
|
* @method string md5()
|
|
* @method string sha1()
|
|
* @method string sha256()
|
|
* @method string sha512()
|
|
* @method \DateTime dateTime(\DateTime|string|int $fromTimestamp = '-30 years', \DateTime|string|int $toTimestamp = 'now')
|
|
* @method int timestamp(\DateTime|string|int $fromTimestamp = '-30 years', \DateTime|string|int $toTimestamp = 'now')
|
|
* @method string timezone()
|
|
* @method string sdl()
|
|
* @method string tld()
|
|
* @method string domain()
|
|
* @method string ip()
|
|
* @method string ipv4()
|
|
* @method string ipv6()
|
|
* @method mixed macAddress()
|
|
* @method mixed email()
|
|
* @method string url(mixed $secure = true)
|
|
* @method string safeColorName()
|
|
* @method string colorName()
|
|
* @method string safeHexColor()
|
|
* @method string hexColor()
|
|
* @method array rgbColorAsArray()
|
|
* @method string rgbColor()
|
|
* @method string rgbCssColor()
|
|
* @method array rgbaColorAsArray()
|
|
* @method string rgbaColor()
|
|
* @method string rgbaCssColor()
|
|
* @method array hslColorAsArray()
|
|
* @method string hslColor()
|
|
* @method string hslCssColor()
|
|
* @method array hslaColorAsArray()
|
|
* @method string hslaColor()
|
|
* @method string hslaCssColor()
|
|
* @method string name(?string $gender = null)
|
|
* @method string firstName(?string $gender = null)
|
|
* @method string lastName()
|
|
* @method mixed title(?string $gender = null)
|
|
* @method string iban(?string $countryCode = null, ?string $format = null)
|
|
* @method mixed boolean(int $percentage = 50)
|
|
* @method mixed randomElement(array $array)
|
|
* @method mixed randomKey(array $array)
|
|
* @method string phoneNumber(?string $format = null, string $separator = '', ?string $prefix = null)
|
|
* @method string indicatoredPhoneNumber(?string $format = null, string $separator = '')
|
|
* @method string spacedPhoneNumber(?string $format = null, ?string $prefix = null)
|
|
* @method string spacedIndicatoredPhoneNumber(?string $format = null)
|
|
* @method string dottedPhoneNumber(?string $format = null, ?string $prefix = null)
|
|
* @method string dottedIndicatoredPhoneNumber(?string $format = null)
|
|
* @method string dashedPhoneNumber(?string $format = null, ?string $prefix = null)
|
|
* @method string dashedIndicatoredPhoneNumber(?string $format = null)
|
|
* @method string cellPhoneNumber(string $separator = '', ?string $prefix = null)
|
|
* @method string indicatoredCellPhoneNumber(string $separator = '')
|
|
* @method string spacedCellPhoneNumber(?string $prefix = null)
|
|
* @method string spacedIndicatoredCellPhoneNumber()
|
|
* @method string dottedCellPhoneNumber(?string $prefix = null)
|
|
* @method string dottedIndicatoredCellPhoneNumber()
|
|
* @method string dashedCellPhoneNumber(?string $prefix = null)
|
|
* @method string dashedIndicatoredCellPhoneNumber()
|
|
* @method string landlinePhoneNumber(string $separator = '', ?string $prefix = null)
|
|
* @method string indicatoredLandlinePhoneNumber(string $separator = '')
|
|
* @method string spacedLandlinePhoneNumber(?string $prefix = null)
|
|
* @method string spacedIndicatoredLandlinePhoneNumber()
|
|
* @method string dottedLandlinePhoneNumber(?string $prefix = null)
|
|
* @method string dottedIndicatoredLandlinePhoneNumber()
|
|
* @method string dashedLandlinePhoneNumber(?string $prefix = null)
|
|
* @method string dashedIndicatoredLandlinePhoneNumber()
|
|
* @method string geoLocation()
|
|
* @method float latitude()
|
|
* @method float longitude()
|
|
*/
|
|
class Container{} |