Completed
Push — master ( d323cb...c1f910 )
by Maxence
01:34
created
lib/Provider/BookmarksProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@
 block discarded – undo
292 292
 
293 293
 
294 294
 	/**
295
-	 * @param IndexDocument $document
295
+	 * @param BookmarksDocument $document
296 296
 	 * @param Exception $e
297 297
 	 */
298 298
 	private function manageErrorException(IndexDocument $document, Exception $e) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
 			if (!($document instanceof BookmarksDocument)) {
212 212
 				continue;
213 213
 			}
214
-			$this->miscService->log('#BM: ' . $document->getId());
214
+			$this->miscService->log('#BM: '.$document->getId());
215 215
 			try {
216 216
 				$this->bookmarksService->updateDocumentFromBookmarksDocument($document);
217 217
 			} catch (Exception $e) {
Please login to merge, or discard this patch.
lib/Service/BookmarksService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@
 block discarded – undo
129 129
 
130 130
 		$html = curl_exec($curl);
131 131
 		if (curl_error($curl)) {
132
-			throw new WebpageIsNotIndexableException('Webpage is not reachable - ' . $url);
132
+			throw new WebpageIsNotIndexableException('Webpage is not reachable - '.$url);
133 133
 		}
134 134
 
135 135
 		curl_close($curl);
Please login to merge, or discard this patch.