From e1051123081e9dc41f9310096e4a3e64e5c7a3ef Mon Sep 17 00:00:00 2001 From: mihaileu Date: Tue, 31 Oct 2023 12:50:26 +0000 Subject: [PATCH] Apply php-cs-fixer changes --- .../OldSoundRabbitMqExtensionTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php b/Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php index 059acbd0..c3c09164 100644 --- a/Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php +++ b/Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php @@ -39,7 +39,7 @@ public function testFooConnectionDefinition() 'use_socket' => false, 'url' => '', 'hosts' => [], - 'channel_rpc_timeout' => 0.0 + 'channel_rpc_timeout' => 0.0, ], $factory->getArgument(1)); $this->assertEquals('%old_sound_rabbit_mq.connection.class%', $definition->getClass()); @@ -71,7 +71,7 @@ public function testSslConnectionDefinition() 'use_socket' => false, 'url' => '', 'hosts' => [], - 'channel_rpc_timeout' => 0.0 + 'channel_rpc_timeout' => 0.0, ], $factory->getArgument(1)); $this->assertEquals('%old_sound_rabbit_mq.connection.class%', $definition->getClass()); } @@ -100,7 +100,7 @@ public function testLazyConnectionDefinition() 'use_socket' => false, 'url' => '', 'hosts' => [], - 'channel_rpc_timeout' => 0.0 + 'channel_rpc_timeout' => 0.0, ], $factory->getArgument(1)); $this->assertEquals('%old_sound_rabbit_mq.lazy.connection.class%', $definition->getClass()); } @@ -129,7 +129,7 @@ public function testDefaultConnectionDefinition() 'use_socket' => false, 'url' => '', 'hosts' => [], - 'channel_rpc_timeout' => 0.0 + 'channel_rpc_timeout' => 0.0, ], $factory->getArgument(1)); $this->assertEquals('%old_sound_rabbit_mq.connection.class%', $definition->getClass()); } @@ -193,7 +193,7 @@ public function testClusterConnectionDefinition() 'heartbeat' => 0, 'use_socket' => false, 'url' => '', - 'channel_rpc_timeout' => 0.0 + 'channel_rpc_timeout' => 0.0, ], $factory->getArgument(1)); $this->assertEquals('%old_sound_rabbit_mq.connection.class%', $definition->getClass()); }