feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
280 changed files with 661 additions and 11112 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;
}
}