| Current Path : /home/rtorresani/www/vendor/endroid/qr-code/src/Label/Margin/ |
| Current File : //home/rtorresani/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;
}