for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Del\Common\Command;
use Del\Common\ContainerService;
use Doctrine\ORM\Tools\Console\Command\GenerateProxiesCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputOption;
class GenerateProxy extends GenerateProxiesCommand
{
protected function configure(): void
parent::configure();
$this->setName('generate-proxies');
}