friendship ended with social-app. php is my new best friend
at main 294 B view raw
1<?php declare(strict_types = 1); 2 3namespace Contributte\Logging; 4 5use Tracy\ILogger as TracyLogger; 6 7class NullLogger implements TracyLogger 8{ 9 10 /** 11 * @param mixed $message 12 * @param string $priority 13 */ 14 public function log($message, $priority = self::INFO): void // phpcs:ignore 15 { 16 } 17 18}