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

PhpUnitLoader::getDescription()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
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