1
0
mirror of https://github.com/fzaninotto/Faker.git synced 2025-04-11 11:03:16 +02:00

add new Polish generators to readme.md

This commit is contained in:
John Was 2013-09-21 10:10:42 +02:00
parent 7a8eb6f1cf
commit 3492b5193e

@ -633,6 +633,31 @@ echo $faker->p; // "5398237590"
```
### `Faker\Provider\pl_PL\Person`
```php
<?php
// Generates a random PESEL number
echo $faker->pesel; // "40061451555"
// Generates a random personal identity card number
echo $faker->personalIdentityNumber; // "AKX383360"
// Generates a random taxpayer identification number (NIP)
echo $faker->taxpayerIdentificationNumber; // '8211575109'
```
### `Faker\Provider\pl_PL\Company`
```php
<?php
// Generates a random REGON number
echo $faker->regon; // "714676680"
// Generates a random local REGON number
echo $faker->regonLocal; // "15346111382836"
```
## License