1 | <?php |
||
22 | abstract class QROutputAbstract implements QROutputInterface{ |
||
23 | |||
24 | /** |
||
25 | * @param \chillerlan\QRCode\Data\QRMatrix $matrix |
||
26 | */ |
||
27 | protected $matrix; |
||
28 | |||
29 | /** |
||
30 | * @var int |
||
31 | */ |
||
32 | protected $moduleCount; |
||
33 | |||
34 | /** |
||
35 | * @var object |
||
36 | */ |
||
37 | protected $options; |
||
38 | |||
39 | /** |
||
40 | * @param \chillerlan\QRCode\QROptions $options |
||
41 | * @param \chillerlan\QRCode\Data\QRMatrix $matrix |
||
42 | * |
||
43 | * @throws \chillerlan\QRCode\Output\QRCodeOutputException |
||
44 | */ |
||
45 | public function __construct(QROptions $options, QRMatrix $matrix){ |
||
56 | |||
57 | /** |
||
58 | * @param string $data |
||
59 | * |
||
60 | * @return bool |
||
61 | * @throws \chillerlan\QRCode\Output\QRCodeOutputException |
||
62 | */ |
||
63 | protected function saveToFile(string $data):bool { |
||
73 | |||
74 | } |
||
75 |