| 1 | <?php |
||
| 14 | class ItemRow { |
||
| 15 | use ItemRowInfo; |
||
| 16 | |||
| 17 | private $itemJson; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $itemJson |
||
| 21 | * @return $this |
||
| 22 | * @throws InvalidArgumentException |
||
| 23 | */ |
||
| 24 | public function setItemJson( $itemJson ) { |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getItemJson() { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return ItemInfo |
||
| 42 | */ |
||
| 43 | public function getItemInfo() { |
||
| 53 | |||
| 54 | } |
||
| 55 |