diff --git a/readme.md b/readme.md index a7ed655114..11412fd203 100644 --- a/readme.md +++ b/readme.md @@ -118,6 +118,7 @@ Each of the generator properties (like `name`, `address`, and `lorem`) are calle ### `Faker\Provider\Base` randomDigit // 7 + randomDigitNot(5) // 0, 1, 2, 3, 4, 6, 7, 8, or 9 randomDigitNotNull // 5 randomNumber($nbDigits = NULL, $strict = false) // 79907610 randomFloat($nbMaxDecimals = NULL, $min = 0, $max = NULL) // 48.8932 diff --git a/src/Faker/Generator.php b/src/Faker/Generator.php index 876be1d8e8..7c757c3790 100644 --- a/src/Faker/Generator.php +++ b/src/Faker/Generator.php @@ -136,6 +136,7 @@ * @method boolean boolean($chanceOfGettingTrue = 50) * * @property int $randomDigit + * @property int $randomDigitNot * @property int $randomDigitNotNull * @property string $randomLetter * @property string $randomAscii