Code Duplication    Length = 4-4 lines in 3 locations

src/Reports/Source.php 1 location

@@ 261-264 (lines=4) @@
258
259
        echo "\033[0m";
260
261
        if ($totalFixable > 0) {
262
            echo PHP_EOL.str_repeat('-', $width).PHP_EOL;
263
            echo "\033[1mPHPCBF CAN FIX THE $fixableSources MARKED SOURCES AUTOMATICALLY ($totalFixable VIOLATIONS IN TOTAL)\033[0m";
264
        }
265
266
        echo PHP_EOL.str_repeat('-', $width).PHP_EOL.PHP_EOL;
267

src/Reports/Summary.php 1 location

@@ 148-151 (lines=4) @@
145
146
        echo "\033[0m";
147
148
        if ($totalFixable > 0) {
149
            echo PHP_EOL.str_repeat('-', $width).PHP_EOL;
150
            echo "\033[1mPHPCBF CAN FIX $totalFixable OF THESE SNIFF VIOLATIONS AUTOMATICALLY\033[0m";
151
        }
152
153
        echo PHP_EOL.str_repeat('-', $width).PHP_EOL.PHP_EOL;
154

src/Reports/VersionControl.php 1 location

@@ 291-294 (lines=4) @@
288
289
        echo "\033[0m";
290
291
        if ($totalFixable > 0) {
292
            echo PHP_EOL.str_repeat('-', $width).PHP_EOL;
293
            echo "\033[1mPHPCBF CAN FIX $totalFixable OF THESE SNIFF VIOLATIONS AUTOMATICALLY\033[0m";
294
        }
295
296
        echo PHP_EOL.str_repeat('-', $width).PHP_EOL.PHP_EOL;
297