Files
hocusfokus-web/kirby/vendor/psr/log/src/LoggerAwareTrait.php
KirbyCMS Deploy 0a8c107828 Initial commit
2026-04-15 11:50:31 +00:00

23 lines
347 B
PHP

<?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait
{
/**
* The logger instance.
*/
protected ?LoggerInterface $logger = null;
/**
* Sets a logger.
*/
public function setLogger(LoggerInterface $logger): void
{
$this->logger = $logger;
}
}