for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mostafaznv\PdfOptimizer;
use Psr\Log\LoggerInterface;
use Stringable;
class PdfOptimizerLogger implements LoggerInterface
{
public function emergency(Stringable|string $message, array $context = []): void {}
public function alert(Stringable|string $message, array $context = []): void {}
public function critical(Stringable|string $message, array $context = []): void {}
public function error(Stringable|string $message, array $context = []): void {}
public function warning(Stringable|string $message, array $context = []): void {}
public function notice(Stringable|string $message, array $context = []): void {}
public function info(Stringable|string $message, array $context = []): void {}
public function debug(Stringable|string $message, array $context = []): void {}
public function log($level, Stringable|string $message, array $context = []): void {}
}