Files
remote_ip/app/setup/setups/commands.php
2023-06-18 19:20:06 -04:00

13 lines
330 B
PHP

<?php
use Psr\Container\ContainerInterface;
return [
ProVM\Command\Watch::class => function(ContainerInterface $container) {
return new ProVM\Command\Watch(
$container->get('command'),
$container->get('period'),
$container->get(Psr\Log\LoggerInterface::class)
);
},
];