Files
MermsMedia/system/ThirdParty/PSR/Log/LoggerAwareInterface.php
CHIEFSOFT\ameye 07a07ab49f first commit
2025-11-22 09:54:51 -05:00

15 lines
231 B
PHP

<?php
namespace Psr\Log;
/**
* Describes a logger-aware instance.
*/
interface LoggerAwareInterface
{
/**
* Sets a logger instance on the object.
*/
public function setLogger(LoggerInterface $logger): void;
}