for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Kubinashi\BattlenetApi\WorldOfWarcraft\CharacterProfileApi\Collection\Model;
/**
* @author Willy Reiche
* @since 2017-07-27
* @version 1.0
*/
class PetStatValueObject
{
* @var int
private $speciesId;
private $breedId;
private $petQualityId;
private $level;
private $health;
private $power;
private $speed;
* PetStatValueObject constructor.
* @param int $speciesId
* @param int $breedId
* @param int $petQualityId
* @param int $level
* @param int $health
* @param int $power
* @param int $speed
public function __construct(
$speciesId,
$breedId,
$petQualityId,
$level,
$health,
$power,
$speed
) {
$this->speciesId = $speciesId;
$this->breedId = $breedId;
$this->petQualityId = $petQualityId;
$this->level = $level;
$this->health = $health;
$this->power = $power;
$this->speed = $speed;
}
* @return int
public function getSpeciesId()
return $this->speciesId;
public function getBreedId()
return $this->breedId;
public function getPetQualityId()
return $this->petQualityId;
public function getLevel()
return $this->level;
public function getHealth()
return $this->health;
public function getPower()
return $this->power;
public function getSpeed()
return $this->speed;