aboutsummaryrefslogblamecommitdiffstats
path: root/vendor/psr/log/src/LoggerAwareTrait.php
blob: 4fb57a29226317fa457ef12b1dfb1053398501bc (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                


                           
                                
       
                                              


                     
      

                                     
                                                            



                                
<?php

namespace Psr\Log;

/**
 * Basic Implementation of LoggerAwareInterface.
 */
trait LoggerAwareTrait
{
    /**
     * The logger instance.
     *
     * @var LoggerInterface|null
     */
    protected ?LoggerInterface $logger = null;

    /**
     * Sets a logger.
     *
     * @param LoggerInterface $logger
     */
    public function setLogger(LoggerInterface $logger): void
    {
        $this->logger = $logger;
    }
}