Files
oficial/cli/src/Service.php
2025-07-15 19:04:19 -04:00

10 lines
154 B
PHP

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