1 | <?php |
||
18 | abstract class QROutputAbstract implements QROutputInterface{ |
||
19 | |||
20 | /** |
||
21 | * @var array |
||
22 | */ |
||
23 | protected $matrix; |
||
24 | |||
25 | /** |
||
26 | * @var int |
||
27 | */ |
||
28 | protected $pixelCount; |
||
29 | |||
30 | /** |
||
31 | * @var object |
||
32 | */ |
||
33 | protected $options; |
||
34 | |||
35 | /** |
||
36 | * @param array $matrix |
||
37 | * |
||
38 | * @return $this |
||
39 | * @throws \chillerlan\QRCode\Output\QRCodeOutputException |
||
40 | */ |
||
41 | public function setMatrix(array $matrix){ |
||
56 | |||
57 | } |
||
58 |