/var/www/vhosts/nabawater/vendor/2amigos/qrcode-library/src/Contracts
NameSizeModeActions
ErrorCorrectionLevelInterface.php4590644editdlrm
FormatInterface.php4190644editdlrm
LabelInterface.php15130644editdlrm
QrCodeInterface.php11370644editdlrm
WriterInterface.php10340644editdlrm
Edit: /var/www/vhosts/nabawater/vendor/2amigos/qrcode-library/src/Contracts/QrCodeInterface.php (1137B)
* * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Da\QrCode\Contracts; interface QrCodeInterface { /** * @return string */ public function getText(): ?string; /** * @return int */ public function getSize():int; /** * @return int */ public function getMargin(): int; /** * @return int[] */ public function getForegroundColor(): array; /** * @return int[] */ public function getBackgroundColor(): array; /** * @return string */ public function getEncoding(): string; /** * @return string */ public function getErrorCorrectionLevel(): string; /** * @return string */ public function getLogoPath(): ?string; /** * @return int */ public function getLogoWidth(): ?int; /** * @return LabelInterface */ public function getLabel(): ?LabelInterface; }