PdfOptimizerLogger   A
last analyzed

Complexity

Total Complexity 9

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Importance

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

9 Methods

Rating   Name   Duplication   Size   Complexity  
A critical() 0 1 1
A error() 0 1 1
A log() 0 1 1
A debug() 0 1 1
A warning() 0 1 1
A emergency() 0 1 1
A notice() 0 1 1
A alert() 0 1 1
A info() 0 1 1
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