Passed
Push — master ( fc83aa...c68055 )
by Radu
01:36
created

AbstractOutputLogger   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 4
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A output() 0 5 2
1
<?php
2
namespace WebServCo\Framework\Log;
3
4
abstract class AbstractOutputLogger extends AbstractLogger
5
{
6
    public function output($string, $eol = true)
7
    {
8
        echo $string;
9
        if ($eol) {
10
            echo PHP_EOL;
11
        }
12
    }
13
}
14