11 lines
245 B
PHP
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')
|
||
|
);
|
||
|
}
|
||
|
];
|