1 | <?php |
||
15 | class ParameterManager implements VhostAwareInterface, ClientAwareInterface |
||
16 | { |
||
17 | use LoggerAwareTrait; |
||
18 | use VhostAwareTrait; |
||
19 | use ClientAwareTrait; |
||
20 | |||
21 | /** |
||
22 | * @param LoggerInterface|null $logger |
||
23 | */ |
||
24 | public function __construct(LoggerInterface $logger = null) |
||
28 | |||
29 | /** |
||
30 | * Create a RabbitMQ's parameter, hum ok only federation-upstream and federation-upstream-set are supported |
||
31 | * |
||
32 | * @param $paramType |
||
33 | * @param $name |
||
34 | * @param array $options |
||
35 | */ |
||
36 | public function create($paramType, $name, array $options) |
||
50 | } |
||
51 |