1 | <?php |
||
18 | abstract class QROutputAbstract implements QROutputInterface{ |
||
19 | |||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | protected $optionsInterface; |
||
24 | |||
25 | /** |
||
26 | * @var array |
||
27 | */ |
||
28 | protected $types; |
||
29 | |||
30 | /** |
||
31 | * @var array |
||
32 | */ |
||
33 | protected $matrix; |
||
34 | |||
35 | /** |
||
36 | * @var int |
||
37 | */ |
||
38 | protected $pixelCount; |
||
39 | |||
40 | /** |
||
41 | * @var object |
||
42 | */ |
||
43 | protected $options; |
||
44 | |||
45 | /** |
||
46 | * @var \chillerlan\QRCode\Output\QROutputOptionsAbstract $outputOptions |
||
47 | * @throws \chillerlan\QRCode\Output\QRCodeOutputException |
||
48 | */ |
||
49 | public function __construct(QROutputOptionsAbstract $outputOptions = null){ |
||
61 | |||
62 | /** |
||
63 | * @param array $matrix |
||
64 | * |
||
65 | * @return $this |
||
66 | * @throws \chillerlan\QRCode\Output\QRCodeOutputException |
||
67 | */ |
||
68 | public function setMatrix(array $matrix){ |
||
83 | |||
84 | } |
||
85 |