@@ -81,7 +81,7 @@ discard block |
||
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 |
||
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 = ?", |