Update Composer Packages

This commit is contained in:
Paul Nicoué 2025-01-12 19:21:26 +01:00
parent e2855992ea
commit 90652db599
233 changed files with 53534 additions and 179 deletions

View file

@ -0,0 +1,22 @@
<?php
namespace Psr\Log;
/**
* Basic Implementation of LoggerAwareInterface.
*/
trait LoggerAwareTrait
{
/**
* The logger instance.
*/
protected ?LoggerInterface $logger = null;
/**
* Sets a logger.
*/
public function setLogger(LoggerInterface $logger): void
{
$this->logger = $logger;
}
}