Code:
class Requests { private $type; public function __construct($type='') { $this->type = strtolower($type); $this->createObject(); } private function createObject() { switch($this->type) { case 'post': $arr = $_POST; break; case 'get': $arr = $_GET;