PhpUnit::getDescription()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
namespace exussum12\CoverageChecker\Loaders;
3
4
/**
5
 * Class PhpUnit
6
 * Used for reading in a phpunit clover XML file
7
 * @package exussum12\CoverageChecker
8
 */
9
class PhpUnit extends Clover
10
{
11
    /**
12
     * {@inheritdoc}
13
     */
14
    public static function getDescription(): string
15
    {
16
        return 'Parses text output in clover (xml) format ' .
17
            'generated with --coverage-clover=file.xml';
18
    }
19
}
20