Issues (37)

src/Output.php (1 issue)

1
<?php
2
namespace exussum12\CoverageChecker;
3
4
interface Output
5
{
6
    public function output(array $coverage, float $percent, float $minimumPercent);
0 ignored issues
show
Coding Style Best Practice introduced by
Please use __construct() instead of a PHP4-style constructor that is named after the class.
Loading history...
7
}
8