userId = $userId; } public function pack() { return parent::pack() . Util::packString($this->userId); } public function unpack(&$data) { parent::unpack($data); $this->userId = Util::unpackString($data); } }