| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- <?php
- class League
- {
- public $leagueId;
- public $leagueName;
- public $lookback;
- public $betMargin;
- public $lookbackHome;
- public $lookbackDraw;
- public $lookbackAway;
- public $betMarginHome;
- public $betMarginDraw;
- public $betMarginAway;
- public $scoringDiffLastGame;
- public $scoringTotal;
- public $winLossRatioHomeAndAway;
- public $winLossRatio;
- private $drawDiffHomeAway;
- private $drawTotalGoals;
- private $drawWinningForm;
- private $drawWinningFormHomeAway;
- public function __construct(
- $leagueId,
- $leagueName,
- $scoringDiffLastGame,
- $scoringTotal,
- $winLossRatioHomeAndAway,
- $winLossRatio,
- $drawDiffHomeAway,
- $drawTotalGoals,
- $drawWinningForm,
- $drawWinningFormHomeAway
- ) {
- $this->leagueId = $leagueId;
- $this->leagueName = $leagueName;
- $this->scoringDiffLastGame = $scoringDiffLastGame;
- $this->scoringTotal = $scoringTotal;
- $this->winLossRatioHomeAndAway = $winLossRatioHomeAndAway;
- $this->winLossRatio = $winLossRatio;
- $this->drawDiffHomeAway = $drawDiffHomeAway;
- $this->drawTotalGoals = $drawTotalGoals;
- $this->drawWinningForm = $drawWinningForm;
- $this->drawWinningFormHomeAway = $drawWinningFormHomeAway;
- }
- public function getBetMargin()
- {
- return $this->betMargin;
- }
- public function getBetMarginAway()
- {
- return $this->betMarginAway;
- }
- public function getBetMarginDraw()
- {
- return $this->betMarginDraw;
- }
- public function getBetMarginHome()
- {
- return $this->betMarginHome;
- }
- public function getDrawDiffHomeAway()
- {
- return $this->drawDiffHomeAway;
- }
- public function getDrawTotalGoals()
- {
- return $this->drawTotalGoals;
- }
- public function getDrawWinningForm()
- {
- return $this->drawWinningForm;
- }
- public function getDrawWinningFormHomeAway()
- {
- return $this->drawWinningFormHomeAway;
- }
- public function getLeagueId()
- {
- return $this->leagueId;
- }
- public function getLeagueName()
- {
- return $this->leagueName;
- }
- public function getLookback()
- {
- return $this->lookback;
- }
- public function getLookbackAway()
- {
- return $this->lookbackAway;
- }
- public function getLookbackDraw()
- {
- return $this->lookbackDraw;
- }
- public function getLookbackHome()
- {
- return $this->lookbackHome;
- }
- public function getScoringDiffLastGame()
- {
- return $this->scoringDiffLastGame;
- }
- public function getScoringTotal()
- {
- return $this->scoringTotal;
- }
- public function getWinLossRatio()
- {
- return $this->winLossRatio;
- }
- public function getWinLossRatioHomeAndAway()
- {
- return $this->winLossRatioHomeAndAway;
- }
- public function setBetMargin($betMargin)
- {
- $this->betMargin = $betMargin;
- }
- public function setBetMarginAway($betMargin)
- {
- $this->betMarginAway = $betMargin;
- }
- }
|