Passed
Push — master ( a76d1f...2241b9 )
by Cesar
02:25
created
src/Handlers/RotativeHandler.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 
21 21
     public function run()
22 22
     {
23
-        if (! $this->validate()) {
23
+        if (!$this->validate()) {
24 24
             return false;
25 25
         }
26 26
 
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
             if ($fd_tmp) {
54 54
                 $fd_compress = gzopen($this->file_rotated, 'w');
55 55
 
56
-                while (! feof($fd_tmp)) {
56
+                while (!feof($fd_tmp)) {
57 57
                     gzwrite($fd_compress, fread($fd_tmp, 1024 * 512));
58 58
                 }
59 59
 
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $patternGlob = $fileInfo['dirname'].'/'.$fileInfo['filename'];
96 96
 
97
-        if (! empty($fileInfo['extension'])) {
97
+        if (!empty($fileInfo['extension'])) {
98 98
             $patternGlob .= '.'.$fileInfo['extension'];
99 99
         }
100 100
 
Please login to merge, or discard this patch.