Files
oficial/cli/src/Service.php

10 lines
154 B
PHP
Raw Normal View History

2025-07-15 19:04:19 -04:00
<?php
namespace Incoviba;
use Psr\Log\LoggerInterface;
abstract class Service
{
public function __construct(protected LoggerInterface $logger) {}
}