Logger   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 5
c 1
b 0
f 0
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getLogger() 0 7 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace RemotelyLiving\PHPCommandBus\Traits;
6
7
use Psr\Log;
8
9
trait Logger
10
{
11
    use Log\LoggerAwareTrait;
12
13
    protected function getLogger(): Log\LoggerInterface
14
    {
15
        if ($this->logger === null) {
16
            $this->logger = new Log\NullLogger();
17
        }
18
19
        return $this->logger;
20
    }
21
}
22