give
/
vendor
/
vendor-prefixed
/
fakerphp
/
faker
/
src
/
Faker
/
Extension
/
PhoneNumberExtension.php
AddressExtension.php
2 years ago
BarcodeExtension.php
2 years ago
BloodExtension.php
2 years ago
ColorExtension.php
2 years ago
CompanyExtension.php
2 years ago
CountryExtension.php
2 years ago
DateTimeExtension.php
2 years ago
Extension.php
2 years ago
ExtensionNotFound.php
2 years ago
FileExtension.php
2 years ago
GeneratorAwareExtension.php
2 years ago
GeneratorAwareExtensionTrait.php
2 years ago
Helper.php
2 years ago
NumberExtension.php
2 years ago
PersonExtension.php
2 years ago
PhoneNumberExtension.php
2 years ago
UuidExtension.php
2 years ago
VersionExtension.php
2 years ago
PhoneNumberExtension.php
26 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 30-October-2023 using Strauss. |
| 6 | * @see https://github.com/BrianHenryIE/strauss |
| 7 | */ |
| 8 | |
| 9 | namespace Give\Vendors\Faker\Extension; |
| 10 | |
| 11 | /** |
| 12 | * @experimental This interface is experimental and does not fall under our BC promise |
| 13 | */ |
| 14 | interface PhoneNumberExtension extends Extension |
| 15 | { |
| 16 | /** |
| 17 | * @example '555-123-546' |
| 18 | */ |
| 19 | public function phoneNumber(): string; |
| 20 | |
| 21 | /** |
| 22 | * @example +27113456789 |
| 23 | */ |
| 24 | public function e164PhoneNumber(): string; |
| 25 | } |
| 26 |