Exemple #1
0
 public function __construct()
 {
     parent::__construct(function (Stream $stream) {
         $headers = (yield $stream->readLine("\r\n\r\n", Stream::MODE_TRIM_TOKEN, 64 * KiB));
         return Request::parse($headers);
     });
 }