Files
scappoinspiaggianew/vendor/endroid/qr-code/src/Label/Font/FontInterface.php
T
2025-03-28 08:52:46 +01:00

13 lines
175 B
PHP

<?php
declare(strict_types=1);
namespace Endroid\QrCode\Label\Font;
interface FontInterface
{
public function getPath(): string;
public function getSize(): int;
}