for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MauroMoreno\DataFactory\Entity;
/**
* Class Sheet
*
* @package MauroMoreno\DataFactory\Entity
*/
class Sheet
{
* @var Category
private $category;
* @var MatchSheet
private $match_sheet;
* @var Sport
private $sport;
* @var Tournament
private $tournament;
private $tournament_alt_name;
* @return Category
public function getCategory(): Category
return $this->category;
}
* @param Category $category
* @return Sheet
public function setCategory(Category $category): Sheet
$this->category = $category;
return $this;
* @return MatchSheet
public function getMatchSheet(): MatchSheet
return $this->match_sheet;
* @param MatchSheet $match_sheet
public function setMatchSheet(MatchSheet $match_sheet): Sheet
$this->match_sheet = $match_sheet;
* @return Sport
public function getSport(): Sport
return $this->sport;
* @param Sport $sport
public function setSport(Sport $sport): Sheet
$this->sport = $sport;
* @return Tournament
public function getTournament(): Tournament
return $this->tournament;
* @param Tournament $tournament
public function setTournament(Tournament $tournament): Sheet
$this->tournament = $tournament;
public function getTournamentAltName(): Tournament
return $this->tournament_alt_name;
public function setTournamentAltName(Tournament $tournament): Sheet
$this->tournament_alt_name = $tournament;