pushHistory를 DB기반으로 변경
This commit is contained in:
+4
-4
@@ -7,10 +7,10 @@ class MapRequest{
|
||||
public $neutralView;
|
||||
public $showMe;
|
||||
function __construct($obj){
|
||||
$this->year = $obj['year'];
|
||||
$this->month = $obj['month'];
|
||||
$this->aux = $obj['aux'];
|
||||
$this->neutralView = $obj['neutralView'];
|
||||
$this->year = Util::array_get($obj['year']);
|
||||
$this->month = Util::array_get($obj['month']);
|
||||
$this->aux = Util::array_get($obj['aux'],[]);
|
||||
$this->neutralView = Util::array_get($obj['neutralView'], false);
|
||||
$this->showMe = $obj['showMe'];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user