NullLogger::log()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 3
1
<?php
2
3
/**
4
 * PHP version 5.4 and 8
5
 *
6
 * @category  Logger
7
 * @package   Payever\Core
8
 * @author    payever GmbH <[email protected]>
9
 * @author    Hennadii.Shymanskyi <[email protected]>
10
 * @copyright 2017-2021 payever GmbH
11
 * @license   MIT <https://opensource.org/licenses/MIT>
12
 * @link      https://docs.payever.org/shopsystems/api/getting-started
13
 */
14
15
namespace Payever\ExternalIntegration\Core\Logger;
16
17
/**
18
 * Class NullLogger
19
 *
20
 * All records are thrown away. Default logger if none explicitly provided.
21
 */
22
class NullLogger extends \Psr\Log\AbstractLogger
23
{
24
    /**
25
     * @inheritdoc
26
     */
27
    public function log($level, $message, array $context = [])
28
    {
29
    }
30
}
31