Completed
Push — master ( 0235df...db4a8b )
by Bjørn
12:10 queued 01:07
created

BaseLogger::logLn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
ccs 0
cts 4
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace WebPConvert\Loggers;
4
5
abstract class BaseLogger
6
{
7
    /*
8
    $msg: message to log
9
    $style: null | bold | italic
10
    */
11
    abstract public function log($msg, $style = '');
12
13
    abstract public function ln();
14
15
    public function logLn($msg, $style = '')
16
    {
17
        $this->log($msg, $style);
18
        $this->ln();
19
    }
20
21
    public function logLnLn($msg, $style = '')
22
    {
23
        $this->logLn($msg, $style);
24
        $this->ln();
25
    }
26
}
27