Completed
Push — master ( 3ffd2a...600a08 )
by Dan Michael O.
02:30
created
app/Http/Controllers/DocumentsController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -169,11 +169,11 @@  discard block
 block discarded – undo
169 169
                 $cover = $doc->storeCoverFromBlob($data);
170 170
             }
171 171
         } catch (\ErrorException $e) {
172
-            \Log::error('Failed to cache cover, got error: ' . $e->getMessage());
172
+            \Log::error('Failed to cache cover, got error: '.$e->getMessage());
173 173
 
174 174
             return response()->json([
175 175
                 'result' => 'error',
176
-                'error'  => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: ' . $e->getMessage(),
176
+                'error'  => 'Failed to store the cover. Please check that the URL points to a valid image file. Details: '.$e->getMessage(),
177 177
             ]);
178 178
         }
179 179
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         ];
209 209
         $doc->save();
210 210
 
211
-        \Log::info('Stored new description for ' . $doc->id);
211
+        \Log::info('Stored new description for '.$doc->id);
212 212
 
213 213
         $se->indexById($doc->id);
214 214
 
Please login to merge, or discard this patch.