Files
oficial/app/common/Ideal/Service.php
2024-01-19 23:12:13 -03:00

10 lines
167 B
PHP

<?php
namespace Incoviba\Common\Ideal;
use Psr\Log\LoggerInterface;
abstract class Service
{
public function __construct(protected LoggerInterface $logger) {}
}