for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VideoGamesRecords\CoreBundle\Model\Entity;
use Doctrine\ORM\Mapping as ORM;
trait RankPointBadgeTrait
{
/**
* @ORM\Column(name="rankBadge", type="integer", nullable=false)
*/
private int $rankBadge = 0;
* @ORM\Column(name="pointBadge", type="integer", nullable=false)
private int $pointBadge = 0;
* @param int $rankBadge
* @return $this
public function setRankBadge(int $rankBadge): static
$this->rankBadge = $rankBadge;
return $this;
}
* Get rankBadge
* @return integer
public function getRankBadge(): int
return $this->rankBadge;
* @param int $pointBadge
public function setpointBadge(int $pointBadge): static
$this->pointBadge = $pointBadge;
* Get pointBadge
public function getPointBadge(): int
return $this->pointBadge;