QrCodeFactoryInterface.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | declare (strict_types=1); |
| 4 | /* |
| 5 | * (c) Jeroen van den Enden <info@endroid.nl> |
| 6 | * |
| 7 | * This source file is subject to the MIT license that is bundled |
| 8 | * with this source code in the file LICENSE. |
| 9 | */ |
| 10 | namespace WP2FA_Vendor\Endroid\QrCode\Factory; |
| 11 | |
| 12 | use WP2FA_Vendor\Endroid\QrCode\QrCodeInterface; |
| 13 | interface QrCodeFactoryInterface |
| 14 | { |
| 15 | /** @param array<string, mixed> $options */ |
| 16 | public function create(string $text = '', array $options = []) : QrCodeInterface; |
| 17 | } |
| 18 |