Passed
Push — master ( 694425...cb2fe4 )
by Marc
03:56
created
src/Response/Cursor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
         int $token,
51 51
         ResponseInterface $response,
52 52
         MessageInterface $message
53
-    ) {
53
+    ){
54 54
         $this->connection = $connection;
55 55
         $this->token = $token;
56 56
         $this->addResponse($response);
Please login to merge, or discard this patch.
src/Query/Aggregation/Limit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
         MessageInterface $message,
32 32
         QueryInterface $query,
33 33
         int $n
34
-    ) {
34
+    ){
35 35
         parent::__construct($rethink, $message);
36 36
 
37 37
         $this->query = $query;
Please login to merge, or discard this patch.
test/integration/Aggregation/LimitTest.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@
 block discarded – undo
43 43
 
44 44
         /** @var Cursor $cursor */
45 45
         $cursor = $this->r()
46
-                       ->table('tabletest')
47
-                       ->filter(['description' => 'A document description.'])
48
-                       ->limit(2)
49
-                       ->run();
46
+                        ->table('tabletest')
47
+                        ->filter(['description' => 'A document description.'])
48
+                        ->limit(2)
49
+                        ->run();
50 50
 
51 51
         $this->assertCount(2, $cursor);
52 52
     }
Please login to merge, or discard this patch.