<?php
namespace gnomephp\input;
/**
*
* Deals with $_SERVER data, filters the specific data with HTMLPurifier.
* @author peec
*
*/
class Server extends InputAbstract{
public function __construct(){
parent::__construct($_SERVER);
}
}