PhpUnit   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 9
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDescription() 0 4 1
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