Files
digifi-WebSite/system/ThirdParty/PSR/Log/LoggerAwareInterface.php
T
CHIEFSOFT\ameye 5c4ba3a99d first commit
2025-04-05 17:44:17 -04:00

19 lines
303 B
PHP

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