radarrplexorganizrnginxsonarrdashboardembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdall
		
		
		
		
			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
						
					
					
						
							397 B
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							26 lines
						
					
					
						
							397 B
						
					
					
				
								<?php
							 | 
						|
								
							 | 
						|
								namespace Psr\Log;
							 | 
						|
								
							 | 
						|
								/**
							 | 
						|
								 * Basic Implementation of LoggerAwareInterface.
							 | 
						|
								 */
							 | 
						|
								trait LoggerAwareTrait
							 | 
						|
								{
							 | 
						|
								    /**
							 | 
						|
								     * The logger instance.
							 | 
						|
								     *
							 | 
						|
								     * @var LoggerInterface
							 | 
						|
								     */
							 | 
						|
								    protected $logger;
							 | 
						|
								
							 | 
						|
								    /**
							 | 
						|
								     * Sets a logger.
							 | 
						|
								     *
							 | 
						|
								     * @param LoggerInterface $logger
							 | 
						|
								     */
							 | 
						|
								    public function setLogger(LoggerInterface $logger)
							 | 
						|
								    {
							 | 
						|
								        $this->logger = $logger;
							 | 
						|
								    }
							 | 
						|
								}
							 | 
						|
								
							 |