Passed
Push — master ( 94ffb8...e27b04 )
by Igor
02:11
created
src/Query/WriteToFile.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
         }
61 61
         if ($format)
62 62
         {
63
-           $this->setFormat($format);
63
+            $this->setFormat($format);
64 64
         }
65 65
         $this->file_name=$file_name;
66 66
     }
Please login to merge, or discard this patch.
src/Client.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
      */
178 178
     public function setTimeout($timeout)
179 179
     {
180
-       return $this->settings()->max_execution_time($timeout);
180
+        return $this->settings()->max_execution_time($timeout);
181 181
     }
182 182
 
183 183
     /**
Please login to merge, or discard this patch.
src/Cluster.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -493,8 +493,8 @@
 block discarded – undo
493 493
      */
494 494
     public function getSizeTable($database_table)
495 495
     {
496
-       $list=[];
497
-       $nodes=$this->getNodesByTable($database_table);
496
+        $list=[];
497
+        $nodes=$this->getNodesByTable($database_table);
498 498
         // scan need node`s
499 499
         foreach ($nodes as $node)
500 500
         {
Please login to merge, or discard this patch.
example/Helper.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,10 +12,10 @@
 block discarded – undo
12 12
     }
13 13
 
14 14
         /**
15
-     * @param $file_name
16
-     * @param int $from_id
17
-     * @param int $to_id
18
-     */
15
+         * @param $file_name
16
+         * @param int $from_id
17
+         * @param int $to_id
18
+         */
19 19
     public static function makeListSitesKeysDataFile($file_name, $from_id = 1000, $to_id = 20000)
20 20
     {
21 21
         @unlink($file_name);
Please login to merge, or discard this patch.