1 | <?php |
||
8 | final class DompdfFactory implements DompdfFactoryInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var string[] |
||
12 | */ |
||
13 | private $options; |
||
14 | |||
15 | /** |
||
16 | * @param string[] $options |
||
17 | */ |
||
18 | public function __construct(array $options = array()) |
||
22 | |||
23 | /** |
||
24 | * @inheritdoc |
||
25 | */ |
||
26 | public function create(array $options = array()) : Dompdf |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | private function createOptions(array $options = array()): Options |
||
38 | } |
||
39 |