for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VideoGamesRecords\CoreBundle\Model\Api;
class PlayerChart
{
private $idPlayer;
private $idChart;
private $idPlatform = null;
private $values = array();
/**
* Set idPlayer
*
* @param integer $idPlayer
* @return $this
*/
public function setIdPlayer($idPlayer)
$this->idPlayer = $idPlayer;
return $this;
}
* Get idPlayer
* @return integer
public function getIdPlayer()
return $this->idPlayer;
* Set idChart
* @param integer $idChart
public function setIdChart($idChart)
$this->idChart = $idChart;
* Get idChart
public function getIdChart()
return $this->idChart;
* Set idPlatform
* @param integer $idPlatform
public function setIdPlatform($idPlatform)
$this->idPlatform = $idPlatform;
* Get idPlatform
public function getIdPlatform()
return $this->idPlatform;
* Set values
* @param array $values
public function setValues($values)
$this->values = $values;
* Get values
* @return array
public function getValues()
return $this->values;