LoggerAwareTrait.php
Same filename in this branch
Namespace
Psr\LogFile
-
vendor/
psr/ log/ src/ LoggerAwareTrait.php
View source
<?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;
}
}
Traits
Title | Deprecated | Summary |
---|---|---|
LoggerAwareTrait | Basic Implementation of LoggerAwareInterface. |