for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VideoGamesRecords\CoreBundle\Traits\Entity;
trait NbChartWithoutDlcTrait
{
/**
* @ORM\Column(name="nbChartWithoutDlc", type="integer", nullable=false, options={"default":0})
*/
private int $nbChartWithoutDlc = 0;
* Set nbChartWithoutDlc
* @param integer $nbChartWithoutDlc
* @return $this
public function setNbChartWithoutDlc(int $nbChartWithoutDlc): static
$this->nbChartWithoutDlc = $nbChartWithoutDlc;
return $this;
}
* Get nbChartWithoutDlc
*
* @return integer
public function getNbChartWithoutDlc(): int
return $this->nbChartWithoutDlc;