| 1 | <?php |
||
| 11 | class CollectionValueObject |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var int |
||
| 15 | */ |
||
| 16 | private $numCollected; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var int |
||
| 20 | */ |
||
| 21 | private $numNotCollected; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var MountValueObject[]|PetValueObject[] |
||
| 25 | */ |
||
| 26 | private $collected; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * MountsValueObject constructor. |
||
| 30 | * @param int $numCollected |
||
| 31 | * @param int $numNotCollected |
||
| 32 | * @param MountValueObject[]|PetValueObject[] $collected |
||
| 33 | */ |
||
| 34 | public function __construct( |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @return int |
||
| 46 | */ |
||
| 47 | public function getNumCollected() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @return int |
||
| 54 | */ |
||
| 55 | public function getNumNotCollected() |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @return MountValueObject[]|PetValueObject[] |
||
| 62 | */ |
||
| 63 | public function getCollected() |
||
| 67 | } |
||
| 68 |