value = (string) $value; } /** * @return string */ public function __toString() { return (string) $this->value; } /** * Converts this MongoInt64 to a native integer * * @return int * @internal This method is not part of the ext-mongo API */ public function toBSONType() { return (int) $this->value; } }