Code Duplication    Length = 3-5 lines in 3 locations

PHPDaemon/Servers/HTTP/Connection.php 3 locations

@@ 319-321 (lines=3) @@
316
                                $this->req->attrs->request += $this->req->attrs->post;
317
                            }
318
                        } elseif ($char === 'C') {
319
                            if (is_array($this->req->attrs->cookie)) {
320
                                $this->req->attrs->request += $this->req->attrs->cookie;
321
                            }
322
                        }
323
                    }
324
                }
@@ 311-313 (lines=3) @@
308
                    for ($i = 0, $s = mb_orig_strlen($this->pool->variablesOrder); $i < $s; ++$i) {
309
                        $char = $this->pool->variablesOrder[$i];
310
                        if ($char === 'G') {
311
                            if (is_array($this->req->attrs->get)) {
312
                                $this->req->attrs->request += $this->req->attrs->get;
313
                            }
314
                        } elseif ($char === 'P') {
315
                            if (is_array($this->req->attrs->post)) {
316
                                $this->req->attrs->request += $this->req->attrs->post;
@@ 314-318 (lines=5) @@
311
                            if (is_array($this->req->attrs->get)) {
312
                                $this->req->attrs->request += $this->req->attrs->get;
313
                            }
314
                        } elseif ($char === 'P') {
315
                            if (is_array($this->req->attrs->post)) {
316
                                $this->req->attrs->request += $this->req->attrs->post;
317
                            }
318
                        } elseif ($char === 'C') {
319
                            if (is_array($this->req->attrs->cookie)) {
320
                                $this->req->attrs->request += $this->req->attrs->cookie;
321
                            }