Skip to content

Commit f94f291

Browse files
committed
phpcs cleanup
1 parent 52ac2dd commit f94f291

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

src/VIPSoft/CodeCoverageCommon/Report/Html.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ public function __construct(array $options)
5757
}
5858

5959
$this->report = new \PHP_CodeCoverage_Report_HTML(
60-
$options['charset'],
61-
$options['highlight'],
62-
$options['lowUpperBound'],
63-
$options['highUpperBound'],
64-
$options['generator']
65-
);
60+
$options['charset'],
61+
$options['highlight'],
62+
$options['lowUpperBound'],
63+
$options['highUpperBound'],
64+
$options['generator']
65+
);
6666

6767
$this->options = $options;
6868
}

src/VIPSoft/CodeCoverageCommon/Report/Text.php

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -56,22 +56,22 @@ public function __construct(array $options)
5656
$outputStream = new \PHPUnit_Util_Printer($options['printer']);
5757

5858
$this->report = new \PHP_CodeCoverage_Report_Text(
59-
$outputStream,
60-
$options['lowUpperBound'],
61-
$options['highUpperBound'],
62-
$options['showUncoveredFiles']
63-
);
59+
$outputStream,
60+
$options['lowUpperBound'],
61+
$options['highUpperBound'],
62+
$options['showUncoveredFiles']
63+
);
6464
} else {
6565
if ( ! isset($options['showOnlySummary'])) {
6666
$options['showOnlySummary'] = false;
6767
}
6868

6969
$this->report = new \PHP_CodeCoverage_Report_Text(
70-
$options['lowUpperBound'],
71-
$options['highUpperBound'],
72-
$options['showUncoveredFiles'],
73-
$options['showOnlySummary']
74-
);
70+
$options['lowUpperBound'],
71+
$options['highUpperBound'],
72+
$options['showUncoveredFiles'],
73+
$options['showOnlySummary']
74+
);
7575
}
7676

7777
$this->options = $options;

0 commit comments

Comments
 (0)