AbstractWriter.php
3 years ago
BinaryWriter.php
3 years ago
DebugWriter.php
3 years ago
EpsWriter.php
3 years ago
FpdfWriter.php
3 years ago
PngWriter.php
3 years ago
SvgWriter.php
3 years ago
WriterInterface.php
3 years ago
WriterInterface.php
24 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\Writer; |
| 11 | |
| 12 | use WP2FA_Vendor\Endroid\QrCode\QrCodeInterface; |
| 13 | interface WriterInterface |
| 14 | { |
| 15 | public function writeString(QrCodeInterface $qrCode) : string; |
| 16 | public function writeDataUri(QrCodeInterface $qrCode) : string; |
| 17 | public function writeFile(QrCodeInterface $qrCode, string $path) : void; |
| 18 | public static function getContentType() : string; |
| 19 | public static function supportsExtension(string $extension) : bool; |
| 20 | /** @return array<string> */ |
| 21 | public static function getSupportedExtensions() : array; |
| 22 | public function getName() : string; |
| 23 | } |
| 24 |