Skip to content

Commit

Permalink
Apply php-cs-fixer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaileu authored and github-actions[bot] committed Oct 31, 2023
1 parent 8296165 commit e105112
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tests/DependencyInjection/OldSoundRabbitMqExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down Expand Up @@ -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());
}
Expand Down Expand Up @@ -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());
}
Expand Down Expand Up @@ -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());
}
Expand Down Expand Up @@ -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());
}
Expand Down

0 comments on commit e105112

Please sign in to comment.