mirror of
https://github.com/hotspotbilling/phpnuxbill.git
synced 2024-11-15 04:37:03 +08:00
26 lines
402 B
PHP
26 lines
402 B
PHP
<?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;
|
|
}
|
|
}
|