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