game2006api/webapp/services/ServerSwitch.php
hujiabin 9af02bf8f2 1
2024-07-09 14:30:18 +08:00

19 lines
337 B
PHP

<?php
class ServerSwitch {
public function getConfig(){
if (!$this->switchConfig){
$this->initConfig();
}
return $this->switchConfig;
}
private $switchConfig = null;
private function initConfig(){
$this->switchConfig = getServerSwitchConfig();
}
}