Completed
Pull Request — master (#214)
by Mikhail
02:13
created

CoverageReporterInterface::html()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 1
ccs 0
cts 0
cp 0
1
<?php
2
3
namespace ParaTest\Coverage;
4
5
interface CoverageReporterInterface
6
{
7
    /**
8
     * Generate clover coverage report
9
     *
10
     * @param string $target Report filename
11
     */
12
    public function clover($target);
13
14
    /**
15
     * Generate html coverage report
16
     *
17
     * @param string $target Report filename
18
     */
19
    public function html($target);
20
21
    /**
22
     * Generate php coverage report
23
     * @param string $target Report filename
24
     */
25
    public function php($target);
26
}
27