File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 1414use SebastianBergmann \CodeCoverage \NoCodeCoverageDriverWithPathCoverageSupportAvailableException ;
1515use SebastianBergmann \Environment \Runtime ;
1616
17- final class Selector
17+ class Selector implements SelectorInterface
1818{
1919 /**
2020 * @throws NoCodeCoverageDriverAvailableException
Original file line number Diff line number Diff line change 1+ <?php declare (strict_types=1 );
2+ /*
3+ * This file is part of phpunit/php-code-coverage.
4+ *
5+ * (c) Sebastian Bergmann <sebastian@phpunit.de>
6+ *
7+ * For the full copyright and license information, please view the LICENSE
8+ * file that was distributed with this source code.
9+ */
10+ namespace SebastianBergmann \CodeCoverage \Driver ;
11+
12+ use SebastianBergmann \CodeCoverage \Filter ;
13+
14+ interface SelectorInterface
15+ {
16+ public function forLineCoverage (Filter $ filter ): Driver ;
17+ public function forLineAndPathCoverage (Filter $ filter ): Driver ;
18+ }
You can’t perform that action at this time.
0 commit comments