Code Duplication    Length = 7-7 lines in 2 locations

src/Extensions/SmokeReporter/Reporter/StandardCliReporter.php 2 locations

@@ 126-132 (lines=7) @@
123
    {
124
        $this->output->writeln("\n\n <comment>Passed tests:</comment> \n");
125
126
        foreach ($this->results as $results) {
127
            foreach ($results as $result) {
128
                if ($result->getStatus() === CheckResult::STATUS_SUCCESS) {
129
                    $this->renderSuccess($result);
130
                }
131
            }
132
        }
133
134
        $this->output->writeln("\n <comment>Failed tests:</comment> \n");
135
@@ 136-142 (lines=7) @@
133
134
        $this->output->writeln("\n <comment>Failed tests:</comment> \n");
135
136
        foreach ($this->results as $results) {
137
            foreach ($results as $result) {
138
                if ($result->getStatus() === CheckResult::STATUS_FAILURE) {
139
                    $this->renderFailure($result);
140
                }
141
            }
142
        }
143
144
        foreach ($this->results as $results) {
145
            foreach ($results as $result) {