Skip to content
This repository was archived by the owner on Oct 19, 2020. It is now read-only.

Commit bff9eb1

Browse files
committed
Fixer
1 parent 992da8e commit bff9eb1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/Command/CodeCoverage/CodeCoverage.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8181

8282
$cmd = $paratest.$source.' --colors --coverage-php=coverage/result.cov';
8383

84-
if($input->getOption('html')){
84+
if ($input->getOption('html')) {
8585
$cmd = $paratest.$source.' --colors --coverage-html=coverage';
8686
}
8787

@@ -97,8 +97,9 @@ protected function execute(InputInterface $input, OutputInterface $output)
9797
return $exitCode;
9898
}
9999

100-
if($input->getOption('html')){
100+
if ($input->getOption('html')) {
101101
$output->writeln('Open the file ./coverage/index.html');
102+
102103
return 0;
103104
}
104105

0 commit comments

Comments
 (0)