13 lines
330 B
PHP
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)
|
|
);
|
|
},
|
|
];
|