Skip to content

Commit b0d7730

Browse files
committed
Apply fixes from StyleCI
1 parent c237b22 commit b0d7730

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Pipeline/PipelineTransactionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ public function testConnection($connection, $connectionName)
5151
->through([
5252
function ($value, $next) {
5353
return $next($value);
54-
}
54+
},
5555
])
5656
->thenReturn();
5757

5858
$this->assertEquals('some string', $result);
59-
Event::dispatched(TransactionBeginning::class, function(TransactionBeginning $event) use ($connectionName) {
59+
Event::dispatched(TransactionBeginning::class, function (TransactionBeginning $event) use ($connectionName) {
6060
return $event->connection === $connectionName;
6161
});
6262
}

0 commit comments

Comments
 (0)