12 lines
306 B
PHP
12 lines
306 B
PHP
<?php
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
return [
|
|
ProVM\Common\Service\Logs::class => function(ContainerInterface $container) {
|
|
return new ProVM\Common\Service\Logs(
|
|
$container->get(Psr\Log\LoggerInterface::class),
|
|
$container->get('logs_folder')
|
|
);
|
|
}
|
|
];
|