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

Logger   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 5
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 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
}