Passed
Push — master ( 7e2cb5...a0f233 )
by Evgenii
02:58
created
src/controllers/ConsoleController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         $commands[] = "find {$module->storageFullPath}  -regextype egrep -regex \".+/.{32}\..{3,4}\.jpg\" -exec rm -rf {} \;";
47 47
         $commands[] = "find {$module->cacheFullPath}  -regextype egrep -regex \".+/.{32}\..{3,4}\.jpg\" -exec rm -rf {} \;";
48 48
 
49
-        array_map(function ($command) {
49
+        array_map(function($command) {
50 50
             exec($command);
51 51
         }, $commands);
52 52
 
Please login to merge, or discard this patch.
src/components/SimpleImage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@
 block discarded – undo
25 25
             $this->image = imagecreatefromjpeg($filename);
26 26
         } elseif ($this->image_type == IMAGETYPE_GIF) {
27 27
             $this->image = imagecreatefromgif($filename);
28
-            imageSaveAlpha($this->image,true);
28
+            imageSaveAlpha($this->image, true);
29 29
         } elseif ($this->image_type == IMAGETYPE_PNG) {
30 30
             $this->image = imagecreatefrompng($filename);
31
-            imageSaveAlpha($this->image,true);
31
+            imageSaveAlpha($this->image, true);
32 32
         } elseif ($this->image_type == IMAGETYPE_WEBP) {
33 33
             $this->image = imagecreatefromwebp($filename);
34 34
         }
Please login to merge, or discard this patch.
src/components/FileBehaviour.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
         if (isset($this->_values[$att_name])) {
206 206
             unset($this->_values[$att_name][0]);
207 207
             if (sizeof($this->_values[$att_name]))
208
-                return array_map(function ($fileId) {
208
+                return array_map(function($fileId) {
209 209
                     return File::findOne($fileId);
210 210
                 }, $this->_values[$att_name]);
211 211
         } else {
Please login to merge, or discard this patch.