Completed
Push — master ( 1c21b1...25f9eb )
by Ricardo Jesus Ruiz
07:29
created

Logger::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 1
1
<?php
2
/**
3
 * Rioxygen
4
 * @copyright Copyright (c) 2018 Rioxygen. (http://www.Rioxygen.com/)
5
 * @license   Copyright
6
 */
7
namespace Rioxygen\Graylog\ZendLogger;
8
9
use Rioxygen\Graylog\LoggerAdapter;
10
use Psr\Log\LoggerInterface;
11
12
class Logger extends LoggerAdapter implements LoggerInterface
13
{
14
    public function __construct($options = [])
15
    {
16
        parent::__construct($options);
17
    }
18
}