Horde_Imap_Client_Base_Debug::__construct PHP Method

__construct() public method

Constructor.
public __construct ( mixed $debug )
$debug mixed The debug target.
    public function __construct($debug)
    {
        $this->_stream = is_resource($debug) ? $debug : @fopen($debug, 'a');
        register_shutdown_function(array($this, 'shutdown'));
    }