Files
logview/app/setup/setups/03_services.php
2023-02-14 17:27:01 -03:00

11 lines
245 B
PHP

<?php
use Psr\Container\ContainerInterface;
return [
ProVM\Common\Service\Logs::class => function(ContainerInterface $container) {
return new ProVM\Common\Service\Logs(
$container->get('logs_folder')
);
}
];