GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Log::info()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace Saltwater\App\Common;
4
5
use Psr\Log\LoggerInterface;
6
use Saltwater\Salt\Provider;
7
8
abstract class Log extends Provider implements LoggerInterface
9
{
10
    public function emergency($message, array $context = array())
11
    {
12
        return $this->log('emergency', $message, $context);
13
    }
14
15
    public function alert($message, array $context = array())
16
    {
17
        return $this->log('alert', $message, $context);
18
    }
19
20
    public function critical($message, array $context = array())
21
    {
22
        return $this->log('critical', $message, $context);
23
    }
24
25
    public function error($message, array $context = array())
26
    {
27
        return $this->log('error', $message, $context);
28
    }
29
30
    public function warning($message, array $context = array())
31
    {
32
        return $this->log('warning', $message, $context);
33
    }
34
35
    public function notice($message, array $context = array())
36
    {
37
        return $this->log('notice', $message, $context);
38
    }
39
40
    public function info($message, array $context = array())
41
    {
42
        return $this->log('info', $message, $context);
43
    }
44
45
    public function debug($message, array $context = array())
46
    {
47
        return $this->log('debug', $message, $context);
48
    }
49
}
50