notImplemented(); } /** * Get pool size for connection pools * * @link http://php.net/manual/en/mongo.getpoolsize.php * @return int Returns the current pool size. * * @deprecated This feature has been DEPRECATED as of version 1.2.3. Relying on this feature is highly discouraged. Please use MongoPool::getSize() instead. */ public function getPoolSize() { $this->notImplemented(); } /** * Returns the address being used by this for slaveOkay reads * * @link http://php.net/manual/en/mongo.getslave.php * @return bool The address of the secondary this connection is using for * reads. This returns NULL if this is not connected to a replica set or not yet * initialized. */ public function getSlave() { $this->notImplemented(); } /** * Get slaveOkay setting for this connection * * @link http://php.net/manual/en/mongo.getslaveokay.php * @return bool Returns the value of slaveOkay for this instance. */ public function getSlaveOkay() { $this->notImplemented(); } /** * Connects to paired database server * * @link http://www.php.net/manual/en/mongo.pairconnect.php * @throws MongoConnectionException * @return boolean * * @deprecated Pass a string of the form "mongodb://server1,server2" to the constructor instead of using this method. */ public function pairConnect() { $this->notImplemented(); } /** * Returns information about all connection pools. * * @link http://php.net/manual/en/mongo.pooldebug.php * @return array * @deprecated This feature has been DEPRECATED as of version 1.2.3. Relying on this feature is highly discouraged. Please use MongoPool::info() instead. */ public function poolDebug() { $this->notImplemented(); } /** * Change slaveOkay setting for this connection * * @link http://php.net/manual/en/mongo.setslaveokay.php * @param bool $ok * @return bool returns the former value of slaveOkay for this instance. */ public function setSlaveOkay ($ok) { $this->notImplemented(); } /** * Set the size for future connection pools. * * @link http://php.net/manual/en/mongo.setpoolsize.php * @param $size

The max number of connections future pools will be able to create. Negative numbers mean that the pool will spawn an infinite number of connections.

* @return bool Returns the former value of pool size. * @deprecated Relying on this feature is highly discouraged. Please use MongoPool::setSize() instead. */ public function setPoolSize($size) { $this->notImplemented(); } /** * Creates a persistent connection with a database server * * @link http://www.php.net/manual/en/mongo.persistconnect.php * @param string $username A username used to identify the connection. * @param string $password A password used to identify the connection. * @throws MongoConnectionException * @return boolean If the connection was successful. * @deprecated Pass array("persist" => $id) to the constructor instead of using this method. */ public function persistConnect($username = "", $password = "") { $this->notImplemented(); } /** * Creates a persistent connection with paired database servers * * @link http://www.php.net/manual/en/mongo.pairpersistconnect.php * @param string $username A username used to identify the connection. * @param string $password A password used to identify the connection. * @throws MongoConnectionException * @return boolean If the connection was successful. * @deprecated Pass "mongodb://server1,server2" and array("persist" => $id) to the constructor instead of using this method. */ public function pairPersistConnect($username = "", $password = "") { $this->notImplemented(); } /** * Connects with a database server * * @link http://www.php.net/manual/en/mongo.connectutil.php * @throws MongoConnectionException * @return boolean If the connection was successful. */ protected function connectUtil() { $this->notImplemented(); } /** * Check if there was an error on the most recent db operation performed * * @link http://www.php.net/manual/en/mongo.lasterror.php * @return array|null Returns the error, if there was one, or NULL. * @deprecated Use MongoDB::lastError() instead. */ public function lastError() { $this->notImplemented(); } /** * Checks for the last error thrown during a database operation * * @link http://www.php.net/manual/en/mongo.preverror.php * @return array Returns the error and the number of operations ago it occurred. * @deprecated Use MongoDB::prevError() instead. */ public function prevError() { $this->notImplemented(); } /** * Clears any flagged errors on the connection * * @link http://www.php.net/manual/en/mongo.reseterror.php * @return array Returns the database response. * @deprecated Use MongoDB::resetError() instead. */ public function resetError() { $this->notImplemented(); } /** * Creates a database error on the database. * * @link http://www.php.net/manual/en/mongo.forceerror.php * @return boolean The database response. * @deprecated Use MongoDB::forceError() instead. */ public function forceError() { $this->notImplemented(); } protected function notImplemented() { throw new \Exception('The Mongo class is deprecated and not supported through mongo-php-adapter'); } }