Skip to content

Commit

Permalink
Set default values
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 25, 2016
1 parent 5c8dd64 commit c1d0d90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CodeCoverage/Report/Text.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PHP_CodeCoverage_Report_Text
'eol' => "\x1b[2K",
];

public function __construct($lowUpperBound, $highLowerBound, $showUncoveredFiles, $showOnlySummary)
public function __construct($lowUpperBound = 50, $highLowerBound = 90, $showUncoveredFiles = false, $showOnlySummary = false)
{
$this->lowUpperBound = $lowUpperBound;
$this->highLowerBound = $highLowerBound;
Expand Down

0 comments on commit c1d0d90

Please sign in to comment.