Command ContainerLoader
This commit is contained in:
15
cli/setup/setups/commands.php
Normal file
15
cli/setup/setups/commands.php
Normal file
@ -0,0 +1,15 @@
|
||||
<?php
|
||||
use Psr\Container\ContainerInterface;
|
||||
|
||||
return [
|
||||
Symfony\Component\Console\CommandLoader\CommandLoaderInterface::class => function(ContainerInterface $container) {
|
||||
return new Symfony\Component\Console\CommandLoader\ContainerCommandLoader($container, $container->get('commands'));
|
||||
},
|
||||
Incoviba\Command\Full::class => function(ContainerInterface $container) {
|
||||
return new Incoviba\Command\Full(
|
||||
$container->get(Psr\Http\Client\ClientInterface::class),
|
||||
$container->get(Psr\Log\LoggerInterface::class),
|
||||
$container->get('commands')
|
||||
);
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user