17 lines
279 B
PHP
17 lines
279 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Endroid\QrCode\Logo;
|
||
|
|
||
|
interface LogoInterface
|
||
|
{
|
||
|
public function getPath(): string;
|
||
|
|
||
|
public function getResizeToWidth(): ?int;
|
||
|
|
||
|
public function getResizeToHeight(): ?int;
|
||
|
|
||
|
public function getPunchoutBackground(): bool;
|
||
|
}
|