--TEST-- AMQPConnection setConnectionName --SKIPIF-- --FILE-- setHost(getenv('PHP_AMQP_HOST')); var_dump($cnn->getConnectionName()); $cnn->setConnectionName('custom connection name'); var_dump($cnn->getConnectionName()); $cnn->setConnectionName(null); var_dump($cnn->getConnectionName()); --EXPECTF-- NULL string(22) "custom connection name" NULL