| Current Path : /var/www/www.indacotrentino.com/www/vendor/rector/rector/vendor/psr/log/src/ |
| Current File : //var/www/www.indacotrentino.com/www/vendor/rector/rector/vendor/psr/log/src/LoggerAwareTrait.php |
<?php
namespace RectorPrefix202304\Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait
{
/**
* The logger instance.
*
* @var LoggerInterface|null
*/
protected $logger;
/**
* Sets a logger.
*
* @param LoggerInterface $logger
*/
public function setLogger(LoggerInterface $logger) : void
{
$this->logger = $logger;
}
}