LoggerAwareTrait.php in TMGMT Translator Smartling 8.4
Same filename and directory in other branches
Namespace
Psr\LogFile
vendor/psr/log/Psr/Log/LoggerAwareTrait.phpView source
<?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait {
/**
* The logger instance.
*
* @var LoggerInterface
*/
protected $logger;
/**
* Sets a logger.
*
* @param LoggerInterface $logger
*/
public function setLogger(LoggerInterface $logger) {
$this->logger = $logger;
}
}
Traits
Name | Description |
---|---|
LoggerAwareTrait | Basic Implementation of LoggerAwareInterface. |