for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace TomCizek\SymfonyProoph\AsynchronousMessages\Configurators;
use TomCizek\SymfonyProoph\AsynchronousMessages\Factories\AsynchronousQueryProducerFactory;
class AsynchronousQueryProducerConfigurator extends AbstractAsynchronousProducerConfigurator
{
public function getProducerFactoryClass(): string
return AsynchronousQueryProducerFactory::class;
}
public function getConfigKey(): string
return AsynchronousQueryProducerFactory::SECTION_CONFIG_ID;