Skip to content

Commit 034731f

Browse files
committed
By default, use the PHP 5.6 coverage
1 parent c6bf560 commit 034731f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Phug/DevTool/Command/CheckCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function runCoverage(InputInterface $input, OutputInterface $output, $
3535

3636
if ($input->getOption('report') && ($code = $app->runCommand('coverage:report', $output, [
3737
'input-file' => $coverageFilePath,
38-
'--php-version', '5.6',
38+
'php-version' => '5.6',
3939
])) !== 0) {
4040
return $code;
4141
}

src/Phug/DevTool/Command/CoverageReportCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function configure()
2222
'php-version',
2323
null,
2424
InputOption::VALUE_OPTIONAL,
25-
'If specified, the report is only send for the given PHP version'
25+
'If specified, the report is only sent for the given PHP version'
2626
)
2727
->setDescription('Reports coverage.')
2828
->setHelp('This command reports coverage');

0 commit comments

Comments
 (0)