Completed
Push — develop ( f10e50...4f888d )
by Alec
03:20
created

Report   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 9
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 4 1
1
<?php
2
/**
3
 * User: alec
4
 * Date: 29.11.18
5
 * Time: 20:57
6
 */
7
8
namespace AlecRabbit\Tools\Reports\Base;
9
10
use function AlecRabbit\brackets;
11
use AlecRabbit\Tools\Reports\Contracts\ReportInterface;
12
use function AlecRabbit\typeOf;
13
14
class Report implements ReportInterface
15
{
16
    /**
17
     * @return string
18
     */
19
    public function __toString(): string
20
    {
21
        return
22
            brackets(typeOf($this) . '::' . __FUNCTION__) . ' Not implemented!';
23
    }
24
}
25