@@ -71,7 +71,7 @@ |
||
| 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 | { |
@@ -42,7 +42,7 @@ discard block |
||
| 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 |
||
| 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 | } |