Code Duplication    Length = 15-16 lines in 2 locations

src/Writer/Standard.php 2 locations

@@ 113-128 (lines=16) @@
110
111
    }
112
113
    private function addVerboseInformationToChangedTest($current)
114
    {
115
        if (! $current['message']) {
116
            return;
117
        }
118
119
        if ($this->verbosity < Output::VERBOSITY_VERBOSE) {
120
            return;
121
        }
122
123
        $this->style->text(sprintf(
124
            "\t<fg=yellow>%s</>: <fg=green>%s</>",
125
            $current['type'],
126
            $current['message']
127
        ));
128
    }
129
130
    private function addVeryVerboseInformationToChangedTest($current)
131
    {
@@ 130-144 (lines=15) @@
127
        ));
128
    }
129
130
    private function addVeryVerboseInformationToChangedTest($current)
131
    {
132
        if (! $current['info']) {
133
            return;
134
        }
135
136
        if ($this->verbosity < Output::VERBOSITY_VERY_VERBOSE) {
137
            return;
138
        }
139
140
        $this->style->text(sprintf(
141
            "\t<fg=cyan>%s</>",
142
            $current['info']
143
        ));
144
    }
145
}
146