for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace VideoGamesRecords\CoreBundle\Model\Entity\Game;
use VideoGamesRecords\CoreBundle\Entity\Game;
trait GameMethodsTrait
{
/**
* @param Game $game
* @return $this
*/
public function setGame(Game $game): static
$this->game = $game;
game
return $this;
}
* Get game
*
* @return Game
public function getGame(): Game
return $this->game;