/
var
/
www
/
barefootlaw.org
/
will-generator
/
vendor
/
endroid
/
qr-code
/
src
/
Writer
/
Result
/
Upload File
HOME
<?php declare(strict_types=1); namespace Endroid\QrCode\Writer\Result; use Endroid\QrCode\Matrix\MatrixInterface; interface ResultInterface { public function getMatrix(): MatrixInterface; public function getString(): string; public function getDataUri(): string; public function saveToFile(string $path): void; public function getMimeType(): string; }