total = $total; } /** * @param integer $monthly */ public function setMonthly($monthly) { $this->monthly = $monthly; } /** * @param integer $daily */ public function setDaily($daily) { $this->daily = $daily; } /** * @return integer */ public function getTotal() { return $this->total; } /** * @return integer */ public function getMonthly() { return $this->monthly; } /** * @return integer */ public function getDaily() { return $this->daily; } }