| 1 | <?php |
||
| 10 | class ItemAppearanceValueObject |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $itemId; |
||
| 16 | /** |
||
| 17 | * @var int |
||
| 18 | */ |
||
| 19 | private $itemAAppearanceModId; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * ItemAppearanceValueObject constructor. |
||
| 23 | * @param int $itemId |
||
| 24 | * @param int $itemAAppearanceModId |
||
| 25 | */ |
||
| 26 | public function __construct( |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return int |
||
| 36 | */ |
||
| 37 | public function getItemId() |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @return int |
||
| 44 | */ |
||
| 45 | public function getItemAAppearanceModId() |
||
| 49 | } |
||
| 50 |