Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php namespace Clockwork\Request;// Incoming HTTP requestclass IncomingRequest{// Methodpublic $method;// URIpublic $uri;// GET and POST datapublic $input = [];// Cookiespublic $cookies = [];public function __construct(array $data = []){foreach ($data as $key => $val) $this->$key = $val;}}