Completed
Push — hal-link ( 2c1f46...2273cc )
by Akihito
06:18 queued 04:53
created

NullLogger::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\Resource;
6
7
final class NullLogger implements LoggerInterface
8
{
9
    public function __invoke(ResourceObject $ro) : void
10
    {
11
    }
12
}
13