qrcode.chapril.org-libreqr/vendor/endroid/qr-code/src/Label/Margin/MarginInterface.php

20 lines
329 B
PHP

<?php
declare(strict_types=1);
namespace Endroid\QrCode\Label\Margin;
interface MarginInterface
{
public function getTop(): int;
public function getRight(): int;
public function getBottom(): int;
public function getLeft(): int;
/** @return array<string, int> */
public function toArray(): array;
}