Passed
Push — develop ( d48ecd...e7a3d3 )
by Csaba
41s
created
src/Database/DynamoDb/RestObject.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
             $client = $this->getClient();
19 19
         }
20 20
         return (new Finder($client))
21
-          ->database($this->getDatabaseName())
22
-          ->from($this->getResourceName());
21
+            ->database($this->getDatabaseName())
22
+            ->from($this->getResourceName());
23 23
     }
24 24
 
25 25
     public function validateUniqueFields()
Please login to merge, or discard this patch.
src/Database/Clusterpoint/Finder.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -40,10 +40,10 @@
 block discarded – undo
40 40
 
41 41
     protected function addWhereGroup($collection, $conditions, $logical)
42 42
     {
43
-      /**
44
-      * @codeCoverageIgnore
45
-      * Passing anonymous function to Clusterpoint API
46
-      */
43
+        /**
44
+         * @codeCoverageIgnore
45
+         * Passing anonymous function to Clusterpoint API
46
+         */
47 47
         return function ($collection) use ($conditions, $logical) {
48 48
             $this->parseWhere($collection, $conditions, $logical);
49 49
         };
Please login to merge, or discard this patch.
src/Database/Clusterpoint/RestObject.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,8 +18,8 @@
 block discarded – undo
18 18
             $client = $this->getClient();
19 19
         }
20 20
         return (new Finder($client))
21
-          ->database($this->getDatabaseName())
22
-          ->from($this->getResourceName());
21
+            ->database($this->getDatabaseName())
22
+            ->from($this->getResourceName());
23 23
     }
24 24
 
25 25
     public function validateUniqueFields()
Please login to merge, or discard this patch.