Avoid doing stupidly clever reflection tricks that make old PHP versions sad.
[htmlpurifier.git] / library / HTMLPurifier / URIScheme / https.php
blob159c2874eaf435a791363d699a304e98ba9aefae
1 <?php
3 /**
4 * Validates https (Secure HTTP) according to http scheme.
5 */
6 class HTMLPurifier_URIScheme_https extends HTMLPurifier_URIScheme_http {
8 public $default_port = 443;
9 public $secure = true;
13 // vim: et sw=4 sts=4