2023-06-09 00:54:34 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
|
|
|
|
return [
|
2023-06-12 21:14:07 -04:00
|
|
|
ProVM\Service\Mailboxes::class => function(ContainerInterface $container) {
|
|
|
|
return new ProVM\Service\Mailboxes(
|
2023-06-09 00:54:34 -04:00
|
|
|
$container->get(ProVM\Service\Communicator::class),
|
|
|
|
$container->get(Psr\Log\LoggerInterface::class),
|
2023-06-12 21:14:07 -04:00
|
|
|
$container->get('min_check_days')
|
2023-06-09 00:54:34 -04:00
|
|
|
);
|
|
|
|
},
|
2023-06-12 21:14:07 -04:00
|
|
|
ProVM\Service\Attachments::class => function(ContainerInterface $container) {
|
|
|
|
return new ProVM\Service\Attachments(
|
2023-06-09 00:54:34 -04:00
|
|
|
$container->get(ProVM\Service\Communicator::class),
|
2023-06-12 21:14:07 -04:00
|
|
|
$container->get(Psr\Log\LoggerInterface::class),
|
|
|
|
$container->get('passwords'),
|
|
|
|
$container->get('base_command')
|
2023-06-09 00:54:34 -04:00
|
|
|
);
|
2023-06-12 21:14:07 -04:00
|
|
|
},
|
2023-06-09 00:54:34 -04:00
|
|
|
];
|