Logger::getLogger()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 7
rs 10
cc 2
nc 2
nop 0
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