for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VideoGamesRecords\CoreBundle\Traits\Entity\Game;
use VideoGamesRecords\CoreBundle\Entity\Game;
trait GameMethodsTrait
{
public function setGame(Game $game): void
$this->game = $game;
game
}
public function getGame(): Game
return $this->game;