Passed
Push — master ( 602023...30e4d8 )
by Alec
11:05
created

SimpleCounterReport   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
ccs 0
cts 2
cp 0
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 3 1
1
<?php declare(strict_types=1);
2
3
namespace AlecRabbit\Reports;
4
5
use AlecRabbit\Reports\Core\AbstractCounterReport;
6
7
class SimpleCounterReport extends AbstractCounterReport
8
{
9
    /**
10
     * @return string
11
     */
12
    public function __toString(): string
13
    {
14
        return 'reportik';
15
    }
16
}
17