SHARE
TWEET
Untitled
a guest
Jan 29th, 2018
57
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- /**
- * @return bool
- */
- public function isBonusCity()
- {
- return $this->cityModel->parent_city_id > 0;
- }
- /**
- * @return bool
- */
- public function isSeasonalCity()
- {
- return
- $this->cityModel->category == \BingoCityModel::CATEGORY_SEASONAL &&
- !$this->isBonusCity();
- }
- /**
- * @return bool
- */
- public function isMapCity()
- {
- return
- $this->cityModel->type == \BingoCityModel::TYPE_BINGO &&
- $this->cityModel->category == \BingoCityModel::CATEGORY_BINGO &&
- $this->cityModel->map_section_id > 0 &&
- !$this->cityModel->isTournament() &&
- !$this->isBonusCity();
- }
RAW Paste Data

