1 | <?php |
||
14 | class DocumentCompositor |
||
15 | { |
||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $class; |
||
20 | |||
21 | /** |
||
22 | * @var array |
||
23 | */ |
||
24 | private $data; |
||
25 | |||
26 | /** |
||
27 | * @var ODMInterface |
||
28 | */ |
||
29 | protected $odm; |
||
30 | |||
31 | /** |
||
32 | * @param string $class |
||
33 | * @param array $data |
||
34 | * @param ODMInterface $odm |
||
35 | */ |
||
36 | public function __construct(string $class, array $data, ODMInterface $odm) |
||
42 | } |