for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OSS\CoreBundle\FixtureGenerator;
class Fixture
{
/**
* @var int
*/
private $teamHome;
private $teamAway;
private $week;
* @return int
public function getTeamHome()
return $this->teamHome;
}
* @param int $teamHome
public function setTeamHome($teamHome)
$this->teamHome = $teamHome;
public function getTeamAway()
return $this->teamAway;
* @param int $teamAway
public function setTeamAway($teamAway)
$this->teamAway = $teamAway;
public function getWeek()
return $this->week;
* @param int $week
public function setWeek($week)
$this->week = $week;