Source for file Cbf.php
Documentation is available at Cbf.php
* CBF report for PHP_CodeSniffer.
* This report implements the various auto-fixing features of the
* PHPCBF script and is not intended (or allowed) to be selected as a
* report from the command line.
* @author Greg Sherwood <gsherwood@squiz.net>
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600)
* @license https://github.com/squizlabs/PHP_CodeSniffer/blob/master/licence.txt BSD Licence
namespace PHP_CodeSniffer\Reports;
use PHP_CodeSniffer\Files\File;
class Cbf implements Report
* Generate a partial report for a single processed file.
* Function should return TRUE if it printed or stored data about the file
* and FALSE if it ignored the file. Returning TRUE indicates that the file and
* its data should be counted in the grand totals.
* @param array $report Prepared report data.
* @param \PHP_CodeSniffer\File $phpcsFile The file being reported on.
* @param bool $showSources Show sources?
* @param int $width Maximum allowed line width.
public function generateFileReport ($report, File $phpcsFile, $showSources=false , $width=80 )
$errors = $phpcsFile->getFixableCount ();
if ($phpcsFile->config ->stdin === false ) {
echo " \t=> Fixing file: $errors/$errors violations remaining";
$fixed = $phpcsFile->fixer ->fixFile ();
if ($phpcsFile->config ->stdin === true ) {
// Replacing STDIN, so output current file to STDOUT
// even if nothing was fixed. Exit here because we
// can't process any more than 1 file in this setup.
echo $phpcsFile->fixer ->getContents ();
$timeTaken = ((microtime(true ) - $startTime) * 1000 );
$timeTaken = round($timeTaken);
echo " in {$timeTaken}ms".PHP_EOL;
$timeTaken = round(($timeTaken / 1000 ), 2 );
echo " in $timeTaken secs".PHP_EOL;
$newFilename = $report['filename']. $phpcsFile->config ->suffix;
$newContent = $phpcsFile->fixer ->getContents ();
if ($newFilename === $report['filename']) {
echo "\t=> File was overwritten".PHP_EOL;
echo "\t=> Fixed file written to ". basename($newFilename).PHP_EOL;
// This output is for the report and not printed to screen.
}//end generateFileReport()
* Prints a summary of fixed files.
* @param string $cachedData Any partial report data that was returned from
* generateFileReport during the run.
* @param int $totalFiles Total number of files processed during the run.
* @param int $totalErrors Total number of errors found during the run.
* @param int $totalWarnings Total number of warnings found during the run.
* @param int $totalFixable Total number of problems that can be fixed.
* @param bool $showSources Show sources?
* @param int $width Maximum allowed line width.
* @param bool $interactive Are we running in interactive mode?
* @param bool $toScreen Is the report being printed to screen?
public function generate (
foreach ($errorCounts as $count) {
echo 'No fixable errors were found';
echo " Fixed $fixed errors in $totalFiles file";
echo " ; failed fixing $fails file";
Documentation generated on Mon, 11 Mar 2019 14:53:14 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.
|