1 | <?php |
||
8 | class Bag implements Contract |
||
9 | { |
||
10 | /** |
||
11 | * @var Dom |
||
12 | */ |
||
13 | private $dom; |
||
14 | |||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | private $rows; |
||
19 | |||
20 | /** |
||
21 | * {@inheritdoc} |
||
22 | */ |
||
23 | public function __construct(Dom $dom, array $rows) |
||
28 | |||
29 | /** |
||
30 | * {@inheritdoc} |
||
31 | */ |
||
32 | public function getDom() |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getRows() |
||
44 | } |