id = $id; } /** * Get the ID * @return string */ public function getId() { return $this->id; } /** * Set the ID * @private For use by \\MediaWiki\\Session\\SessionManager only * @param string $id */ public function setId( $id ) { $this->id = $id; } public function __toString() { return $this->id; } }