Beispiel #1
0
 /**
  * Returns the next synckey
  *
  * @access public
  * @return string/boolean       returns false if uuid or counter are not available
  */
 public function GetNewSyncKey()
 {
     if (isset($this->uuid) && isset($this->uuidNewCounter)) {
         return StateManager::BuildStateKey($this->uuid, $this->uuidNewCounter);
     }
     return false;
 }