function _DatabaseHandler::__sleep

5.x _DatabaseHandler.php _DatabaseHandler::__sleep()

This is a PHP "magic" function. Called during a serialize command. Basically, we aren't trying to save any local variables. In fact, we will get a fatal exception if we try to serialize our PDO connection.

File

classes/_DatabaseHandler.php, line 61

Class

_DatabaseHandler

Code

function __sleep() {
  return array();
}