Log::getServiceIdentifier()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
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