123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- declare(strict_types=1);
- /**
- * This file is part of Hyperf.
- *
- * @link https://www.hyperf.io
- * @document https://hyperf.wiki
- * @contact group@hyperf.io
- * @license https://github.com/hyperf/hyperf/blob/master/LICENSE
- */
- namespace Hyperf\Server\Entry;
- use Psr\Log\LoggerInterface;
- class Logger implements LoggerInterface
- {
- public function emergency($message, array $context = []): void
- {
- }
- public function alert($message, array $context = []): void
- {
- }
- public function critical($message, array $context = []): void
- {
- }
- public function error($message, array $context = []): void
- {
- }
- public function warning($message, array $context = []): void
- {
- }
- public function notice($message, array $context = []): void
- {
- }
- public function info($message, array $context = []): void
- {
- }
- public function debug($message, array $context = []): void
- {
- }
- public function log($level, $message, array $context = []): void
- {
- }
- }
|