Completed
Push — master ( 3167db...70e3fd )
by Gaetano
07:00
created

Logger::debugMessage()   B

Complexity

Conditions 6
Paths 18

Size

Total Lines 28

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 42

Importance

Changes 0
Metric Value
cc 6
nc 18
nop 2
dl 0
loc 28
ccs 0
cts 15
cp 0
crap 42
rs 8.8497
c 0
b 0
f 0
1
<?php
2
3
namespace PhpXmlRpc\Helper;
4
5
class Logger
6
{
7
    protected static $instance = null;
8
9
    /**
10
     * This class is singleton, so that later we can move to DI patterns.
11
     *
12
     * @return Logger
13
     */
14 20
    public static function instance()
15
    {
16 20
        if (self::$instance === null) {
17 20
            self::$instance = new self();
18
        }
19
20 20
        return self::$instance;
21
    }
22
23
    /**
24
     * Echoes a debug message, taking care of escaping it when not in console mode.
25
     * NB: if the encoding of the message is not known or wrong, and we are working in web mode, there is no guarantee
26
     *     of 100% accuracy, which kind of defeats the purpose of debugging
27
     *
28
     * @param string $message
29
     * @param string $encoding
30
     */
31
    public function debugMessage($message, $encoding = null)
32
    {
33
        // US-ASCII is a warning for PHP and a fatal for HHVM
34
        if ($encoding == 'US-ASCII') {
35
            $encoding = 'UTF-8';
36
        }
37
38
        if (PHP_SAPI != 'cli') {
39
            $flags = ENT_COMPAT;
40
            // avoid warnings on php < 5.4...
41
            if (defined('ENT_HTML401')) {
42
                $flags =  $flags | ENT_HTML401;
43
            }
44
            if (defined('ENT_SUBSTITUTE')) {
45
                $flags =  $flags | ENT_SUBSTITUTE;
46
            }
47
            if ($encoding != null) {
0 ignored issues
show
Bug introduced by
It seems like you are loosely comparing $encoding of type string|null against null; this is ambiguous if the string can be empty. Consider using a strict comparison !== instead.
Loading history...
48
                print "<PRE>\n".htmlentities($message, $flags, $encoding)."\n</PRE>";
49
            } else {
50
                print "<PRE>\n".htmlentities($message, $flags)."\n</PRE>";
51
            }
52
        } else {
53
            print "\n$message\n";
54
        }
55
56
        // let the user see this now in case there's a time out later...
57
        flush();
58
    }
59
60
    /**
61
     * Writes a message to the error log
62
     */
63 20
    public function errorLog($message)
64
    {
65 20
        error_log($message);
66 20
    }
67
}
68