| 1 | <?php |
||
| 5 | class Document |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var int|string |
||
| 9 | */ |
||
| 10 | private $id; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | private $data; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string|int $id |
||
| 19 | * @param array $data |
||
| 20 | */ |
||
| 21 | public function __construct($id, array $data) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return int|string |
||
| 30 | */ |
||
| 31 | public function getId() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return array |
||
| 38 | */ |
||
| 39 | public function getData() |
||
| 43 | } |
||
| 44 |