Code Duplication    Length = 3-3 lines in 2 locations

src/Client.php 2 locations

@@ 237-239 (lines=3) @@
234
                        // If we have lines after current one
235
                        if (isset($response[$j])) {
236
                            $this->pregResponse($response[$j], $matches);
237
                            if (isset($matches[1][0], $matches[2][0])) {
238
                                $result['after'][$matches[1][0]] = $matches[2][0];
239
                            }
240
                        }
241
                    }
242
                    break 2;
@@ 245-247 (lines=3) @@
242
                    break 2;
243
                default:
244
                    $this->pregResponse($value, $matches);
245
                    if (isset($matches[1][0], $matches[2][0])) {
246
                        $result[$i][$matches[1][0]] = $matches[2][0];
247
                    }
248
                    break;
249
            }
250
        }