| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class QrCode extends BaseQrCode implements QrCodeInterface |
||
| 11 | { |
||
| 12 | // A file extension is supported if the underlying library supports it, |
||
| 13 | // including the possibility to add a logo in the center of the qr code. |
||
| 14 | private const SUPPORTED_EXTENSIONS = ['png', 'svg']; |
||
| 15 | |||
| 16 | public function writeFile(string $path): void |
||
| 35 | } |
||
| 36 | } |