Code Duplication    Length = 3-5 lines in 3 locations

PHPDaemon/Servers/HTTP/Connection.php 3 locations

@@ 328-330 (lines=3) @@
325
                    for ($i = 0, $s = mb_orig_strlen($this->pool->variablesOrder); $i < $s; ++$i) {
326
                        $char = $this->pool->variablesOrder[$i];
327
                        if ($char === 'G') {
328
                            if (is_array($this->req->attrs->get)) {
329
                                $this->req->attrs->request += $this->req->attrs->get;
330
                            }
331
                        } elseif ($char === 'P') {
332
                            if (is_array($this->req->attrs->post)) {
333
                                $this->req->attrs->request += $this->req->attrs->post;
@@ 331-335 (lines=5) @@
328
                            if (is_array($this->req->attrs->get)) {
329
                                $this->req->attrs->request += $this->req->attrs->get;
330
                            }
331
                        } elseif ($char === 'P') {
332
                            if (is_array($this->req->attrs->post)) {
333
                                $this->req->attrs->request += $this->req->attrs->post;
334
                            }
335
                        } elseif ($char === 'C') {
336
                            if (is_array($this->req->attrs->cookie)) {
337
                                $this->req->attrs->request += $this->req->attrs->cookie;
338
                            }
@@ 336-338 (lines=3) @@
333
                                $this->req->attrs->request += $this->req->attrs->post;
334
                            }
335
                        } elseif ($char === 'C') {
336
                            if (is_array($this->req->attrs->cookie)) {
337
                                $this->req->attrs->request += $this->req->attrs->cookie;
338
                            }
339
                        }
340
                    }
341
                }