Skip to content

Commit 4ff4ee0

Browse files
authored
Merge pull request #191 from PHPCSStandards/feature/qa-remove-some-stray-params
Runner::processFile(): remove stray passed params
2 parents ff11608 + acd5ebc commit 4ff4ee0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Runner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,7 @@ public function processFile($file)
688688
$file->addErrorOnLine($error, 1, 'Internal.Exception');
689689
}//end try
690690

691-
$this->reporter->cacheFileReport($file, $this->config);
691+
$this->reporter->cacheFileReport($file);
692692

693693
if ($this->config->interactive === true) {
694694
/*
@@ -723,7 +723,7 @@ public function processFile($file)
723723
$file->ruleset->populateTokenListeners();
724724
$file->reloadContent();
725725
$file->process();
726-
$this->reporter->cacheFileReport($file, $this->config);
726+
$this->reporter->cacheFileReport($file);
727727
break;
728728
}
729729
}//end while

0 commit comments

Comments
 (0)