Passed
Push — main ( 2253bc...876ec6 )
by Aleksandar
02:29
created
src/Drivers/PredisDriver.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,6 +112,6 @@
 block discarded – undo
112 112
             $command[] = $value;
113 113
         }
114 114
 
115
-       $this->client->executeRaw($command);
115
+        $this->client->executeRaw($command);
116 116
     }
117 117
 }
118 118
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         foreach ($data as $item) {
83 83
             $message = [];
84 84
             $max = count($item[1]);
85
-            for($i = 1; $i < $max; $i += 2) {
85
+            for ($i = 1; $i < $max; $i += 2) {
86 86
                 $message[$item[1][$i - 1]] = $item[1][$i];
87 87
             }
88 88
 
Please login to merge, or discard this patch.
src/FailHandler/FileLogHandler.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
         $this->path = $logFilePath;
50 50
         $this->openLogFile();
51 51
 
52
-        register_shutdown_function(function () {
52
+        register_shutdown_function(function() {
53 53
             $this->closeLogFile();
54 54
         });
55 55
     }
Please login to merge, or discard this patch.