forked from FakerPHP/fakerphp.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update de_AT docs * update de_AT docs * update de_AT docs
- Loading branch information
Showing
1 changed file
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,21 @@ | ||
# German (Austria) | ||
|
||
### `Faker\Provider\at_AT\Payment` | ||
### `Faker\Provider\de_AT\Address` | ||
|
||
```php | ||
echo $faker->state; // "Wien" | ||
``` | ||
|
||
### `Faker\Provider\de_AT\Payment` | ||
|
||
```php | ||
echo $faker->vat; // "AT U12345678" - Austrian Value Added Tax number | ||
echo $faker->vat(false); // "ATU12345678" - unspaced Austrian Value Added Tax number | ||
``` | ||
|
||
### `Faker\Provider\de_AT\Person` | ||
|
||
```php | ||
echo $faker->ssn; // "3130231169" - Austrian Social Security number | ||
echo $faker->ssn(new \DateTime('2010-09-08')); // "8235080910" - Austrian Social Security number for a specific birth date | ||
``` |