Files
oficial/app/common/Ideal/LoggerEnabled.php

18 lines
354 B
PHP
Raw Normal View History

2025-05-07 20:04:06 -04:00
<?php
namespace Incoviba\Common\Ideal;
use Psr\Log\LoggerAwareInterface;
use Psr\Log\LoggerInterface;
abstract class LoggerEnabled implements LoggerAwareInterface
{
2025-06-25 18:11:28 -04:00
public LoggerInterface $logger {
get {
return $this->logger;
}
set(LoggerInterface $value) {
$this->logger = $value;
}
2025-05-07 20:04:06 -04:00
}
}