AddressExtension.php
1 year ago
BarcodeExtension.php
1 year ago
BloodExtension.php
1 year ago
ColorExtension.php
1 year ago
CompanyExtension.php
1 year ago
CountryExtension.php
1 year ago
DateTimeExtension.php
1 year ago
Extension.php
1 year ago
ExtensionNotFound.php
1 year ago
FileExtension.php
1 year ago
GeneratorAwareExtension.php
1 year ago
GeneratorAwareExtensionTrait.php
1 year ago
Helper.php
1 year ago
NumberExtension.php
1 year ago
PersonExtension.php
1 year ago
PhoneNumberExtension.php
1 year ago
UuidExtension.php
1 year ago
VersionExtension.php
1 year ago
UuidExtension.php
23 lines
| 1 | <?php |
| 2 | /** |
| 3 | * @license MIT |
| 4 | * |
| 5 | * Modified by impress-org on 07-August-2024 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 |