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