CI / php (push) Successful in 2m53s
- Add EnvServicePortResolver (DeploymentConfig) for MySQL, Redis frontends, session Redis, AMQP, http_cache_hosts, optional search - Extend tunnel registry with tunnel_type, service_key, service metadata; provisionServiceTunnel without store/NGINX map; teardown guards - Admin: Type (Website|Service), service dropdown, list Type column; JS toggle - TunnelManager/start-server: forward to resolved host:port - Tests: EnvServicePortResolver + service teardown; test stubs for Magento/PSR - docs: admin-ui Type/Service and security notes
27 lines
853 B
PHP
27 lines
853 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psr\Log;
|
|
|
|
interface LoggerInterface
|
|
{
|
|
public function emergency(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function alert(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function critical(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function error(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function warning(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function notice(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function info(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function debug(string|\Stringable $message, array $context = []): void;
|
|
|
|
public function log($level, string|\Stringable $message, array $context = []): void;
|
|
}
|