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