You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
402 B
26 lines
402 B
<?php |
|
|
|
namespace 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) |
|
{ |
|
$this->logger = $logger; |
|
} |
|
}
|
|
|