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