feature/cierres #25

Open
aldarien wants to merge 458 commits from feature/cierres into develop
296 changed files with 682 additions and 12161 deletions
Showing only changes of commit e02ed4684f - Show all commits

View File

@ -0,0 +1,19 @@
<?php
namespace Incoviba\Common\Ideal;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
abstract class LoggerEnabled implements LoggerAwareInterface
{
protected LoggerInterface $logger;
public function setLogger(LoggerInterface $logger): self
{
$this->logger = $logger;
return $this;
}
public function getLogger(): LoggerInterface
{
return $this->logger;
}
}