Completed
Pull Request — master (#14)
by Scott
02:44
created

PhpUnitLoader   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDescription() 0 5 1
1
<?php
2
namespace exussum12\CoverageChecker;
3
4
use XMLReader;
5
6
/**
7
 * Class XMLReport
8
 * Used for reading in a phpunit clover XML file
9
 * @package exussum12\CoverageChecker
10
 */
11
class PhpUnitLoader extends CloverLoader
12
{
13
    /**
14
     * {@inheritdoc}
15
     */
16
    public static function getDescription()
17
    {
18
        return 'Parses text output in clover (xml) format ' .
19
            'generated with coverage-clover=file.xml';
20
    }
21
}
22