Files
logview/app/setup/setups/03_services.php

12 lines
306 B
PHP
Raw Normal View History

2023-02-14 17:27:01 -03:00
<?php
use Psr\Container\ContainerInterface;
return [
ProVM\Common\Service\Logs::class => function(ContainerInterface $container) {
return new ProVM\Common\Service\Logs(
2023-02-14 23:18:30 -03:00
$container->get(Psr\Log\LoggerInterface::class),
2023-02-14 17:27:01 -03:00
$container->get('logs_folder')
);
}
];