Completed
Branch master (85eed3)
by
unknown
02:32
created

ProxyLogger   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 3
dl 0
loc 12
ccs 3
cts 3
cp 1
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A log() 0 4 2
1
<?php namespace Neomerx\JsonApi\Factories;
2
3
/**
4
 * Copyright 2015 [email protected] (www.neomerx.com)
5
 *
6
 * Licensed under the Apache License, Version 2.0 (the "License");
7
 * you may not use this file except in compliance with the License.
8
 * You may obtain a copy of the License at
9
 *
10
 * http://www.apache.org/licenses/LICENSE-2.0
11
 *
12
 * Unless required by applicable law or agreed to in writing, software
13
 * distributed under the License is distributed on an "AS IS" BASIS,
14
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
 * See the License for the specific language governing permissions and
16
 * limitations under the License.
17
 */
18
19
use \Psr\Log\AbstractLogger;
20
use \Psr\Log\LoggerAwareTrait;
21
22
/**
23
 * @package Neomerx\JsonApi
24
 */
25
class ProxyLogger extends AbstractLogger
26
{
27
    use LoggerAwareTrait;
28
29
    /**
30
     * @inheritdoc
31
     */
32 1
    public function log($level, $message, array $context = [])
33
    {
34 1
        $this->logger === null ?: $this->logger->log($level, $message, $context);
35 1
    }
36
}
37