for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kubinashi\BattlenetApi\WorldOfWarcraft\CharacterProfileApi\Model\Item;
/**
* @author Willy Reiche
* @since 2017-08-23
* @version 1.0
*/
class ItemStatValueObject
{
* @var int
private $stat;
private $amount;
* ItemStatValueObject constructor.
* @param int $stat
* @param int $amount
public function __construct(
$stat,
$amount
) {
$this->stat = $stat;
$this->amount = $amount;
}
* @return int
public function getStat()
return $this->stat;
public function getAmount()
return $this->amount;