Passed
Pull Request — final (#599)
by
unknown
02:36
created
src/phpFastCache/Drivers/Couchbase/Driver.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -148,9 +148,9 @@  discard block
 block discarded – undo
148 148
             $password = isset($this->config[ 'password' ]) ? $this->config[ 'password' ] : NULL;
149 149
             $username = isset($this->config[ 'username' ]) ? $this->config[ 'username' ] : NULL;
150 150
             $buckets = isset($this->config[ 'buckets' ]) ? $this->config[ 'buckets' ] : [
151
-              [
151
+                [
152 152
                 'bucket' => 'default',
153
-              ],
153
+                ],
154 154
             ];
155 155
             
156 156
             // Establish username and password for bucket access
@@ -213,10 +213,10 @@  discard block
 block discarded – undo
213 213
         $info = $this->getBucket()->manager()->info();
214 214
 
215 215
         return (new DriverStatistic())
216
-          ->setSize($info[ 'basicStats' ][ 'diskUsed' ])
217
-          ->setRawData($info)
218
-          ->setData(implode(', ', array_keys($this->itemInstances)))
219
-          ->setInfo('CouchBase version ' . $info[ 'nodes' ][ 0 ][ 'version' ] . ', Uptime (in days): ' . round($info[ 'nodes' ][ 0 ][ 'uptime' ] / 86400,
220
-              1) . "\n For more information see RawData.");
216
+            ->setSize($info[ 'basicStats' ][ 'diskUsed' ])
217
+            ->setRawData($info)
218
+            ->setData(implode(', ', array_keys($this->itemInstances)))
219
+            ->setInfo('CouchBase version ' . $info[ 'nodes' ][ 0 ][ 'version' ] . ', Uptime (in days): ' . round($info[ 'nodes' ][ 0 ][ 'uptime' ] / 86400,
220
+                1) . "\n For more information see RawData.");
221 221
     }
222 222
 }
223 223
\ No newline at end of file
Please login to merge, or discard this patch.