We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e479542 commit e689acbCopy full SHA for e689acb
src/CodeCoverage.php
@@ -93,7 +93,7 @@ class PHP_CodeCoverage
93
*
94
* @var array
95
*/
96
- private $uncoveredFiles = array();
+ private $uncoveredFiles = [];
97
98
/**
99
* Constructor.
@@ -583,7 +583,9 @@ private function applyIgnoredLinesFilter(array &$data)
583
private function initializeFilesThatAreSeenTheFirstTime(array $data)
584
{
585
foreach ($data as $file => $lines) {
586
- if ($this->filter->isFile($file) && !isset($this->data[$file]) && !$this->filter()->isFiltered($file)) {
+ if ($this->filter->isFile($file) &&
587
+ !isset($this->data[$file]) &&
588
+ !$this->filter()->isFiltered($file)) {
589
$this->data[$file] = [];
590
591
foreach ($lines as $k => $v) {
0 commit comments