Code Duplication    Length = 4-4 lines in 2 locations

src/Paraunit/Configuration/CoverageConfiguration.php 2 locations

@@ 53-56 (lines=4) @@
50
            $coverageResult->addCoverageProcessor($html);
51
        }
52
53
        if ($input->getOption('text')) {
54
            $text = new Text(new OutputFile($input->getOption('text')));
55
            $coverageResult->addCoverageProcessor($text);
56
        }
57
58
        if ($input->getOption('text-to-console')) {
59
            /** @var OutputInterface $output */
@@ 70-73 (lines=4) @@
67
            $coverageResult->addCoverageProcessor($crap4j);
68
        }
69
70
        if ($input->getOption('php')) {
71
            $php = new Php(new OutputFile($input->getOption('php')));
72
            $coverageResult->addCoverageProcessor($php);
73
        }
74
    }
75
}
76