1 | <?php |
||
20 | class Bag implements Contract |
||
21 | { |
||
22 | /** |
||
23 | * @var Dom |
||
24 | */ |
||
25 | private $dom; |
||
26 | |||
27 | /** |
||
28 | * @var array |
||
29 | */ |
||
30 | private $rows; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | public function __construct(Dom $dom, array $rows) |
||
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | */ |
||
44 | public function getDom() |
||
48 | |||
49 | /** |
||
50 | * {@inheritdoc} |
||
51 | */ |
||
52 | public function getRows() |
||
56 | } |
||
57 |