/**
* Destructor.
*/
- function __destruct()
+ public function __destruct()
{
$this->_closeDebug();
}
/**
* Do cleanup prior to serialization.
*/
- function __sleep()
+ public function __sleep()
{
$this->_closeDebug();
/**
* Do re-initialization on unserialize().
*/
- function __wakeup()
+ public function __wakeup()
{
if (isset($this->_params['_passencrypt']) &&
!is_null(Horde_Imap_Client::$encryptKey)) {
*
* @param array $params The configuration parameters.
*/
- function __construct($params = array())
+ public function __construct($params = array())
{
if (empty($params['driver']) ||
empty($params['driver_params']) ||
/**
* Saves items to the cache at shutdown.
*/
- function __destruct()
+ public function __destruct()
{
$compress = $this->_params['compress'];
$lifetime = $this->_params['lifetime'];
* Do cleanup prior to serialization and provide a list of variables
* to serialize.
*/
- function __sleep()
+ public function __sleep()
{
$this->logout();
parent::__sleep();
/**
* Constructor.
*/
- function __construct($message = null, $code = 0)
+ public function __construct($message = null, $code = 0)
{
parent::__construct($message, $code);
* class allows translation between abstracted search criteria and a
* generated IMAP search criteria string suitable for sending to a remote
* IMAP server.
+ *
+ * Copyright 2008 The Horde Project (http://www.horde.org/)
+ *
+ * See the enclosed file COPYING for license information (GPL). If you
+ * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ *
+ * @author Michael Slusarz <slusarz@horde.org>
+ * @category Horde
+ * @package Horde_Imap_Client
*/
class Horde_Imap_Client_Search_Query
{
* Do cleanup prior to serialization and provide a list of variables
* to serialize.
*/
- function __sleep()
+ public function __sleep()
{
$this->logout();
$this->_temp = array();
/**
* A class allowing easy access to threaded sort results from
* Horde_Imap_Client::thread().
+ *
+ * Copyright 2008 The Horde Project (http://www.horde.org/)
+ *
+ * See the enclosed file COPYING for license information (GPL). If you
+ * did not receive this file, see http://www.fsf.org/copyleft/gpl.html.
+ *
+ * @author Michael Slusarz <slusarz@horde.org>
+ * @category Horde
+ * @package Horde_Imap_Client
*/
class Horde_Imap_Client_Thread
{
* Horde_Imap_Client_Base::_thread().
* @param string $type Either 'uid' or 'sequence'.
*/
- function __construct($data, $type)
+ public function __construct($data, $type)
{
$this->_thread = $data;
$this->_type = $type;