| @@ -20,7 +20,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | |