give
/
vendor
/
vendor-prefixed
/
fakerphp
/
faker
/
src
/
Faker
/
Extension
/
ExtensionNotFound.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
ExtensionNotFound.php
19 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 | declare(strict_types=1); |
| 10 | |
| 11 | namespace Give\Vendors\Faker\Extension; |
| 12 | |
| 13 | /** |
| 14 | * @experimental This class is experimental and does not fall under our BC promise |
| 15 | */ |
| 16 | final class ExtensionNotFound extends \LogicException |
| 17 | { |
| 18 | } |
| 19 |