for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MyOnlineStore\Bundle\RabbitMqManagerBundle\Configuration\Consumer\Section;
use Supervisor\Configuration\Section\Base;
use Symfony\Component\OptionsResolver\OptionsResolver;
class Queue extends Base
{
/**
* @inheritdoc
*/
protected $name = 'queuesettings';
protected function configureProperties(OptionsResolver $resolver)
$resolver
->setDefined('routingkey')
->setAllowedTypes('routingkey', 'string');
}