Code Duplication    Length = 4-4 lines in 2 locations

src/Reports/Code.php 1 location

@@ 304-307 (lines=4) @@
301
        }//end foreach
302
303
        echo str_repeat('-', $width).PHP_EOL;
304
        if ($report['fixable'] > 0) {
305
            echo "\033[1m".'PHPCBF CAN FIX THE '.$report['fixable'].' MARKED SNIFF VIOLATIONS AUTOMATICALLY'."\033[0m".PHP_EOL;
306
            echo str_repeat('-', $width).PHP_EOL;
307
        }
308
309
        return true;
310

src/Reports/Full.php 1 location

@@ 167-170 (lines=4) @@
164
        }//end foreach
165
166
        echo str_repeat('-', $width).PHP_EOL;
167
        if ($report['fixable'] > 0) {
168
            echo "\033[1m".'PHPCBF CAN FIX THE '.$report['fixable'].' MARKED SNIFF VIOLATIONS AUTOMATICALLY'."\033[0m".PHP_EOL;
169
            echo str_repeat('-', $width).PHP_EOL;
170
        }
171
172
        echo PHP_EOL;
173
        return true;