@@ -144,11 +144,11 @@ |
||
| 144 | 144 | public function read($path, $asArray = false) |
| 145 | 145 | { |
| 146 | 146 | if (file_exists($path)) { |
| 147 | - Yii::info('Read file: ' . $path, 'file'); |
|
| 147 | + Yii::info('Read file: '.$path, 'file'); |
|
| 148 | 148 | |
| 149 | 149 | return $asArray ? file($path) : file_get_contents($path); |
| 150 | 150 | } else { |
| 151 | - Yii::warning('Couldn\'t read file: ' . $path, 'file'); |
|
| 151 | + Yii::warning('Couldn\'t read file: '.$path, 'file'); |
|
| 152 | 152 | |
| 153 | 153 | return; |
| 154 | 154 | } |