Code Duplication    Length = 3-3 lines in 2 locations

src/Command/Run.php 2 locations

@@ 523-525 (lines=3) @@
520
    {
521
        preg_match_all('/([0-9]+) assertions/', $outputBuffer, $matches);
522
523
        if (isset($matches[1][0])) {
524
            $this->numAssertions += (int) $matches[1][0];
525
        }
526
527
        preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches);
528
@@ 529-531 (lines=3) @@
526
527
        preg_match_all('/Assertions: ([0-9]+)/', $outputBuffer, $matches);
528
529
        if (isset($matches[1][0])) {
530
            $this->numAssertions += (int) $matches[1][0];
531
        }
532
533
        preg_match_all('/Failures: ([0-9]+)/', $outputBuffer, $matches);
534