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
UuidExtension.php
23 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 UuidExtension extends Extension |
| 15 | { |
| 16 | /** |
| 17 | * Generate name based md5 UUID (version 3). |
| 18 | * |
| 19 | * @example '7e57d004-2b97-0e7a-b45f-5387367791cd' |
| 20 | */ |
| 21 | public function uuid3(): string; |
| 22 | } |
| 23 |