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

10 lines
170 B
PHP

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