Completed
Branch master (d06fc8)
by Thorsten
02:02
created
Category
src/Connector/CouchDbConnector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         if (isset($this->settings['default_query'])) {
50 50
             $handler = HandlerStack::create();
51 51
             $handler->push(Middleware::mapRequest(
52
-                function (RequestInterface $request) {
52
+                function(RequestInterface $request) {
53 53
                     $uri = $request->getUri();
54 54
                     foreach ($this->settings['default_query'] as $param => $value) {
55 55
                         $uri = Uri::withQueryValue($uri, $param, $value);
Please login to merge, or discard this patch.
src/Storage/CouchDbStorageAdapter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
             throw new DbalException('Failed to read data for '.$identifier);
54 54
         }
55 55
 
56
-        return CommitSequence::fromArray(array_map(function (array $commitData) {
56
+        return CommitSequence::fromArray(array_map(function(array $commitData) {
57 57
             return $commitData['doc'];
58 58
         }, array_reverse($rawResponse['rows'])));
59 59
     }
Please login to merge, or discard this patch.