Code Duplication    Length = 3-3 lines in 2 locations

src/Client.php 2 locations

@@ 353-355 (lines=3) @@
350
                        // If we have lines after current one
351
                        if (isset($response[$j])) {
352
                            $this->pregResponse($response[$j], $matches);
353
                            if (isset($matches[1][0], $matches[2][0])) {
354
                                $result['after'][$matches[1][0]] = $matches[2][0];
355
                            }
356
                        }
357
                    }
358
                    break 2;
@@ 361-363 (lines=3) @@
358
                    break 2;
359
                default:
360
                    $this->pregResponse($value, $matches);
361
                    if (isset($matches[1][0], $matches[2][0])) {
362
                        $result[$i][$matches[1][0]] = $matches[2][0];
363
                    }
364
                    break;
365
            }
366
        }