Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/endroid/qr-code/src/Label/Margin/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/endroid/qr-code/src/Label/Margin/MarginInterface.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;
}