LoggerAwareTrait.php in Service Container 7
Same filename and directory in other branches
Namespace
Psr\LogFile
lib/Psr/Log/LoggerAwareTrait.phpView source
<?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait {
/** @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. |