Completed
Push — master ( dc6ae9...666f34 )
by Andrii
12:22
created
src/helpers/FileHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@  discard block
 block discarded – undo
42 42
         } else {
43 43
             file_put_contents($path, $content);
44 44
         }
45
-        Yii::warning('Written file: ' . $path, 'file');
45
+        Yii::warning('Written file: '.$path, 'file');
46 46
 
47 47
         return true;
48 48
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $path = rtrim(trim($path), '/');
60 60
         if (!file_exists($path)) {
61 61
             mkdir($path, 0777, true);
62
-            Yii::warning('Created dir:  ' . $path . '/', 'file');
62
+            Yii::warning('Created dir:  '.$path.'/', 'file');
63 63
 
64 64
             return true;
65 65
         }
Please login to merge, or discard this patch.