Code Duplication    Length = 3-3 lines in 2 locations

src/Client.php 2 locations

@@ 259-261 (lines=3) @@
256
                        // If we have lines after current one
257
                        if (isset($response[$j])) {
258
                            $this->pregResponse($response[$j], $matches);
259
                            if (isset($matches[1][0], $matches[2][0])) {
260
                                $result['after'][$matches[1][0]] = $matches[2][0];
261
                            }
262
                        }
263
                    }
264
                    break 2;
@@ 267-269 (lines=3) @@
264
                    break 2;
265
                default:
266
                    $this->pregResponse($value, $matches);
267
                    if (isset($matches[1][0], $matches[2][0])) {
268
                        $result[$i][$matches[1][0]] = $matches[2][0];
269
                    }
270
                    break;
271
            }
272
        }