PdfOptimizerLogger::warning()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 1
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 1
rs 10
1
<?php
2
3
namespace Mostafaznv\PdfOptimizer;
4
5
use Psr\Log\LoggerInterface;
6
use Stringable;
7
8
9
class PdfOptimizerLogger implements LoggerInterface
10
{
11
    public function emergency(Stringable|string $message, array $context = []): void {}
12
13
    public function alert(Stringable|string $message, array $context = []): void {}
14
15
    public function critical(Stringable|string $message, array $context = []): void {}
16
17
    public function error(Stringable|string $message, array $context = []): void {}
18
19
    public function warning(Stringable|string $message, array $context = []): void {}
20
21
    public function notice(Stringable|string $message, array $context = []): void {}
22
23
    public function info(Stringable|string $message, array $context = []): void {}
24
25
    public function debug(Stringable|string $message, array $context = []): void {}
26
27
    public function log($level, Stringable|string $message, array $context = []): void {}
28
}
29