remove month from milestone camp

This commit is contained in:
Ricsi
2019-03-20 21:11:21 +00:00
parent 1e13788020
commit a054c0605f

View File

@@ -8,8 +8,6 @@ class milestone_camp
private $msca_id;
private $msca_date;
private $msca_place;
private $msca_month;
public function set_msca_data_by_id($_msca_id) {
global $sql;
@@ -31,7 +29,6 @@ class milestone_camp
));
}
/**
* @return mixed
*/
@@ -91,26 +88,6 @@ class milestone_camp
return $this;
}
/**
* @return mixed
*/
public function get_msca_month()
{
return $this->msca_month;
}
/**
* @param mixed $msca_month
*
* @return self
*/
public function set_msca_month($msca_month)
{
$this->msca_month = $msca_month;
return $this;
}
}