Code Duplication    Length = 5-5 lines in 2 locations

vendor/phpunit/php-code-coverage/src/CodeCoverage.php 2 locations

@@ 780-784 (lines=5) @@
777
                            $token instanceof PHP_Token_TRAIT ||
778
                            $token instanceof PHP_Token_CLASS) {
779
                            if (empty($classes[$token->getName()]['methods'])) {
780
                                for ($i = $token->getLine();
781
                                     $i <= $token->getEndLine();
782
                                     $i++) {
783
                                    $this->ignoredLines[$filename][] = $i;
784
                                }
785
                            } else {
786
                                $firstMethod = array_shift(
787
                                    $classes[$token->getName()]['methods']
@@ 807-811 (lines=5) @@
804
                                    $this->ignoredLines[$filename][] = $i;
805
                                }
806
807
                                for ($i = $token->getEndLine();
808
                                     $i > $lastMethod['endLine'];
809
                                     $i--) {
810
                                    $this->ignoredLines[$filename][] = $i;
811
                                }
812
                            }
813
                        }
814
                        break;