for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kubinashi\BattlenetApi\WorldOfWarcraft\CharacterProfileApi\Reputation\Model;
/**
* @author Willy Reiche
* @since 2017-07-28
* @version 1.0
*/
class ReputationValueObject
{
* @var int
private $id;
* @var string
private $name;
private $standing;
private $value;
private $max;
* ReputationValueObject constructor.
* @param int $id
* @param string $name
* @param int $standing
* @param int $value
* @param int $max
public function __construct(
$id,
$name,
$standing,
$value,
$max
) {
$this->id = $id;
$this->name = $name;
$this->standing = $standing;
$this->value = $value;
$this->max = $max;
}
* @return int
public function getId()
return $this->id;
* @return string
public function getName()
return $this->name;
public function getStanding()
return $this->standing;
public function getValue()
return $this->value;
public function getMax()
return $this->max;