Failed Conditions
Branch feature/aggregation-class (00a1d3)
by Marc
04:03
created
test/unit/Connection/ConnectionTestCase.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
         parent::setUp();
50 50
 
51 51
         $this->stream = Mockery::mock(StreamInterface::class);
52
-        $this->streamWrapper = function() {
52
+        $this->streamWrapper = function(){
53 53
             return $this->stream;
54 54
         };
55 55
 
Please login to merge, or discard this patch.
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/Connection/Connection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
         string $dbName,
66 66
         SerializerInterface $querySerializer,
67 67
         SerializerInterface $responseSerializer
68
-    ) {
68
+    ){
69 69
         $this->streamWrapper = $streamWrapper;
70 70
         $this->dbName = $dbName;
71 71
         $this->handshake = $handshake;
Please login to merge, or discard this patch.
src/Query/Operation/Insert.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
         array $documents
34
-    ) {
34
+    ){
35 35
         parent::__construct($rethink, $message);
36 36
 
37 37
         $this->query = $query;
Please login to merge, or discard this patch.
src/Query/Operation/Get.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
         $key
34
-    ) {
34
+    ){
35 35
         parent::__construct($rethink, $message);
36 36
 
37 37
         $this->query = $query;
Please login to merge, or discard this patch.
src/Query/Operation/Update.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         MessageInterface $message,
33 33
         QueryInterface $query,
34 34
         array $elements
35
-    ) {
35
+    ){
36 36
         parent::__construct($rethink, $message);
37 37
 
38 38
         $this->query = $query;
Please login to merge, or discard this patch.
src/Query/Operation/Filter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
         MessageInterface $message,
31 31
         QueryInterface $query,
32 32
         array $predicate
33
-    ) {
33
+    ){
34 34
         parent::__construct($rethink, $message);
35 35
 
36 36
         $this->query = $query;
Please login to merge, or discard this patch.
src/Query/Aggregation/OrderBy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         MessageInterface $message,
33 33
         QueryInterface $query,
34 34
         $key
35
-    ) {
35
+    ){
36 36
         parent::__construct($rethink, $message);
37 37
 
38 38
         $this->query = $query;
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
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         MessageInterface $message,
33 33
         QueryInterface $query,
34 34
         $n
35
-    ) {
35
+    ){
36 36
         parent::__construct($rethink, $message);
37 37
 
38 38
         $this->query = $query;
Please login to merge, or discard this patch.