Files
ms1readerv4/ci4app/system/ThirdParty/PSR/Log/LoggerAwareInterface.php
2026-07-17 11:48:07 -04: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;
}