for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Antidot\DevTools\Container;
use Antidot\DevTools\Application\Command\ShowContainer;
use Psr\Container\ContainerInterface;
class ShowContainerCommandFactory
{
public function __invoke(ContainerInterface $container): ShowContainer
return new ShowContainer((array)$container->get('config'));
}