Completed
Push — php7 ( 0d7c93 )
by Alex
03:34
created
src/Outbox/OutboxPersister.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         $outboxRecord['is_dispatched'] = 0;
82 82
 
83 83
         $this->connection->transactional(
84
-            function (Connection $connection) use ($outboxRecord) {
84
+            function(Connection $connection) use ($outboxRecord) {
85 85
                 $connection->insert($this->messagesTableName, $outboxRecord);
86 86
             }
87 87
         );
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     {
200 200
         $endpointId = 0;
201 201
         $this->connection->transactional(
202
-            function (Connection $connection) use ($endpointName, &$endpointId) {
202
+            function(Connection $connection) use ($endpointName, &$endpointId) {
203 203
                 $lookupHash = md5($endpointName);
204 204
                 $endpointRecord = $connection->executeQuery(
205 205
                     "SELECT * FROM {$this->endpointsTableName} WHERE lookup_hash = ?",
Please login to merge, or discard this patch.