for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Enzyme\Axiom\Console\Commands;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class MakeFactoryCommand extends BaseCommand
{
/**
* {@inheritDoc}
*/
protected function getGeneratorType()
return 'factory';
}
protected function execute(InputInterface $input, OutputInterface $output)
parent::execute($input, $output);
$this->executeGeneration($input, $output);