<?php
/**
* HTTPS adapter for Stream class
*
* @author Alexander Over <hide@address.com>
*/
class Stream_HTTPS extends Stream_HTTP
{
public function __construct()
{
parent::__construct();
$this->port = 443;
$this->protocol = 'tls';
$this->isSSL = true;
}
}