Files
FloatEV-Bko/system/ThirdParty/PSR/Log/LoggerAwareInterface.php
T
DESKTOP-DH6BVPV\chiefsoft 29452e5b6e first commit
2022-11-15 21:53:02 -05:00

19 lines
297 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);
}