@@ -44,7 +44,7 @@ public function tearDown(): void
4444
4545 public function test_rabbit_basic_publish_without_args_works (): void
4646 {
47- list ($ connection , $ routing_key , $ channel , $ exchange , $ queue ) = $ this ->setUpQueue ();
47+ list ($ connection , $ routing_key , $ _channel , $ exchange , $ queue ) = $ this ->setUpQueue ();
4848
4949 try {
5050 $ exchange ->publish ('test ' , $ routing_key );
@@ -78,7 +78,7 @@ public function test_rabbit_basic_publish_without_args_works(): void
7878 */
7979 public function test_rabbit_basic_publish (string $ messageInteraction ): void
8080 {
81- list ($ connection , $ routing_key , $ channel , $ exchange , $ queue ) = $ this ->setUpQueue ();
81+ list ($ connection , $ routing_key , $ _channel , $ exchange , $ queue ) = $ this ->setUpQueue ();
8282
8383 try {
8484 $ exchange ->publish ('test ' , $ routing_key , AMQP_NOPARAM , []);
@@ -106,7 +106,6 @@ public function test_rabbit_basic_publish(string $messageInteraction): void
106106
107107 $ this ->assertCount (2 , $ this ->storage );
108108
109- /** @var ImmutableSpan $publishSpan */
110109 $ interactionSpan = $ this ->storage [1 ];
111110 $ this ->assertEquals (SpanKind::KIND_CLIENT , $ interactionSpan ->getKind ());
112111 $ this ->assertEquals ($ queue ->getName () . ' ' . $ messageInteraction , $ interactionSpan ->getName ());
0 commit comments