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

CoverageReporterInterface

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 22
ccs 0
cts 0
cp 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
clover() 0 1 ?
html() 0 1 ?
php() 0 1 ?
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