9 lines
206 B
PHP
9 lines
206 B
PHP
<?php
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
return [
|
|
ProVM\Command\Watch::class => function(ContainerInterface $container) {
|
|
return new ProVM\Command\Watch($container->get('period'));
|
|
}
|
|
];
|