Code Duplication    Length = 3-3 lines in 2 locations

src/Client.php 2 locations

@@ 243-245 (lines=3) @@
240
                        // If we have lines after current one
241
                        if (isset($response[$j])) {
242
                            $this->pregResponse($response[$j], $matches);
243
                            if (isset($matches[1][0]) && isset($matches[2][0])) {
244
                                $result['after'][$matches[1][0]] = $matches[2][0];
245
                            }
246
                        }
247
                    }
248
                    break 2;
@@ 251-253 (lines=3) @@
248
                    break 2;
249
                default:
250
                    $this->pregResponse($value, $matches);
251
                    if (isset($matches[1][0]) && isset($matches[2][0])) {
252
                        $result[$i][$matches[1][0]] = $matches[2][0];
253
                    }
254
                    break;
255
            }
256
        }