Skip to content

Commit 6fb4ae7

Browse files
committed
fix CS issues.
1 parent 0138668 commit 6fb4ae7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Queue/Connectors/RabbitMQConnectorTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public function testShouldSetRabbitMqDlxDelayStrategyIfConnectionFactoryImplemen
102102
$connector = new RabbitMQConnector($this->createMock(Dispatcher::class));
103103

104104
$called = false;
105-
DelayStrategyAwareAmqpConnectionFactorySpy::$spy = function($actualStrategy) use (&$called) {
105+
DelayStrategyAwareAmqpConnectionFactorySpy::$spy = function ($actualStrategy) use (&$called) {
106106
$this->assertInstanceOf(RabbitMqDlxDelayStrategy::class, $actualStrategy);
107107

108108
$called = true;
@@ -129,7 +129,7 @@ public function testShouldCallContextCloseMethodOnWorkerStoppingEvent()
129129
->expects($this->once())
130130
->method('listen')
131131
->with(WorkerStopping::class, $this->isInstanceOf(\Closure::class))
132-
->willReturnCallback(function($eventName, \Closure $listener) {
132+
->willReturnCallback(function ($eventName, \Closure $listener) {
133133

134134
$listener();
135135
})

0 commit comments

Comments
 (0)