Completed
Push — master ( fbc8fa...2cac0a )
by Andrii
03:56
created
src/handlers/BaseHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,11 +144,11 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.