Your IP : 3.15.29.119


Current Path : /proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/psr/log/Psr/Log/
Upload File :
Current File : //proc/self/root/home/sudancam/public_html/wp-content/plugins/wp-rss-aggregator/vendor/psr/log/Psr/Log/LoggerAwareTrait.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;
    }
}