Log   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 10
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getServiceIdentifier() 0 3 1
1
<?php
2
3
namespace Lagdo\Symfony\Facades;
4
5
use Psr\Log\LoggerInterface;
6
7
/**
8
 * @method static void emergency(string|\Stringable $message, array $context = [])
9
 * @method static void alert(string|\Stringable $message, array $context = [])
10
 * @method static void critical(string|\Stringable $message, array $context = [])
11
 * @method static void error(string|\Stringable $message, array $context = [])
12
 * @method static void warning(string|\Stringable $message, array $context = [])
13
 * @method static void notice(string|\Stringable $message, array $context = [])
14
 * @method static void info(string|\Stringable $message, array $context = [])
15
 * @method static void debug(string|\Stringable $message, array $context = [])
16
 * @method static void log($level, string|\Stringable $message, array $context = [])
17
 */
18
final class Log extends AbstractFacade
19
{
20
    use ServiceInstance;
21
22
    /**
23
     * @inheritDoc
24
     */
25
    protected static function getServiceIdentifier(): string
26
    {
27
        return LoggerInterface::class;
28
    }
29
}
30