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\Factories;
class AsynchronousCommandProducerFactory extends AbstractAsynchronousMessageProducerFactory
{
public const SECTION_CONFIG_ID = 'commands';
public function __construct(string $configId = self::SECTION_CONFIG_ID)
parent::__construct($configId);
}