Completed
Push — master ( dc6ae9...666f34 )
by Andrii
12:22
created
src/helpers/FileHelper.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      * Creates a symlink.
72 72
      * @param string $src existing source path
73 73
      * @param string $dst destionation path to be created
74
-     * @return true on success or false on failure
74
+     * @return boolean on success or false on failure
75 75
      */
76 76
     public static function symlink($src, $dst)
77 77
     {
Please login to merge, or discard this 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.