Beispiel #1
0
 public function execute()
 {
     $this->servers = DbServer::GetAll();
     $this->types = DbServerType::GetAll();
 }
Beispiel #2
0
 public static function getInstance()
 {
     if (!self::$instance) {
         self::$instance = new DbServer();
     }
     return self::$instance;
 }