Completed
Push — master ( 0dca94...0596a5 )
by Maxence
13s queued 12s
created
lib/Service/ConfigService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -236,7 +236,7 @@
 block discarded – undo
236 236
 	 */
237 237
 	public function setDocumentIndexOption(FilesDocument $document, string $option) {
238 238
 		$document->getIndex()
239
-				 ->addOption('_' . $option, (string)$this->getAppValue($option));
239
+				 ->addOption('_'.$option, (string)$this->getAppValue($option));
240 240
 	}
241 241
 
242 242
 
Please login to merge, or discard this patch.
lib/Service/ExtensionService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
 	 * @param FilesDocument $document
88 88
 	 * @param Node $file
89 89
 	 */
90
-	public function fileIndexing(FilesDocument &$document, Node $file) {
90
+	public function fileIndexing(FilesDocument & $document, Node $file) {
91 91
 		$this->dispatch('Files_FullTextSearch.onFileIndexing', ['file' => $file, 'document' => &$document]);
92 92
 	}
93 93
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	/**
96 96
 	 * @param ISearchRequest $request
97 97
 	 */
98
-	public function searchRequest(ISearchRequest &$request) {
98
+	public function searchRequest(ISearchRequest & $request) {
99 99
 		$this->dispatch('Files_FullTextSearch.onSearchRequest', ['request' => &$request]);
100 100
 	}
101 101
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 	/**
104 104
 	 * @param ISearchResult $result
105 105
 	 */
106
-	public function searchResult(ISearchResult &$result) {
106
+	public function searchResult(ISearchResult & $result) {
107 107
 		$this->dispatch('Files_FullTextSearch.onSearchResult', ['result' => &$result]);
108 108
 	}
109 109
 
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	/**
112 112
 	 * @param IIndexDocument $document
113 113
 	 */
114
-	public function indexComparing(IIndexDocument &$document) {
114
+	public function indexComparing(IIndexDocument & $document) {
115 115
 		$this->dispatch('Files_FullTextSearch.onIndexComparing', ['document' => &$document]);
116 116
 	}
117 117
 
Please login to merge, or discard this patch.
lib/Service/ExternalFilesService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
 	 *
192 192
 	 * @throws FileIsNotIndexableException
193 193
 	 */
194
-	public function updateDocumentAccess(FilesDocument &$document, Node $file) {
194
+	public function updateDocumentAccess(FilesDocument & $document, Node $file) {
195 195
 		if ($document->getSource() !== ConfigService::FILES_EXTERNAL) {
196 196
 			return;
197 197
 		}
Please login to merge, or discard this patch.
lib/Service/FilesService.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1047,17 +1047,17 @@
 block discarded – undo
1047 1047
 				$content = '';
1048 1048
 
1049 1049
 				foreach ($xml->diagram as $child) {
1050
-				    $deflated_content = (string)$child;
1051
-				    $base64decoded = base64_decode($deflated_content);
1052
-				    $urlencoded_content = gzinflate($base64decoded);
1053
-				    $urldecoded_content = urldecode($urlencoded_content);
1050
+					$deflated_content = (string)$child;
1051
+					$base64decoded = base64_decode($deflated_content);
1052
+					$urlencoded_content = gzinflate($base64decoded);
1053
+					$urldecoded_content = urldecode($urlencoded_content);
1054 1054
 
1055
-				    // Remove image tag
1056
-				    $diagram_str = preg_replace('/style=\"shape=image[^"]*\"/', '', $urldecoded_content);
1055
+					// Remove image tag
1056
+					$diagram_str = preg_replace('/style=\"shape=image[^"]*\"/', '', $urldecoded_content);
1057 1057
 
1058
-				    // Construct XML
1059
-				    $diagram_xml = simplexml_load_string($diagram_str);
1060
-				    $content = $content . ' ' . $this->readDrawioXmlValue($diagram_xml);
1058
+					// Construct XML
1059
+					$diagram_xml = simplexml_load_string($diagram_str);
1060
+					$content = $content . ' ' . $this->readDrawioXmlValue($diagram_xml);
1061 1061
 				}
1062 1062
 
1063 1063
 			} catch (\Throwable $t) {
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 									  ->get($indexOptions->getOption('path', '/'));
232 232
 		} catch (Throwable $e) {
233 233
 			$this->e($e, ['userId' => $userId, 'options' => $indexOptions]);
234
-			\OC::$server->getLogger()->log(2, 'Issue while retrieving rootFolder for ' . $userId);
234
+			\OC::$server->getLogger()->log(2, 'Issue while retrieving rootFolder for '.$userId);
235 235
 
236 236
 			return [];
237 237
 		}
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
 		$tagIds = $this->systemTagObjectMapper->getTagIdsForObjects([$file->getId()], 'files');
482 482
 		if (array_key_exists($file->getId(), $tagIds)) {
483 483
 			$tags = array_values(
484
-				array_map(function (ISystemTag $tag): string {
484
+				array_map(function(ISystemTag $tag): string {
485 485
 					return $tag->getName();
486 486
 				}, $this->systemTagManager->getTagsByIds($tagIds[$file->getId()]))
487 487
 			);
@@ -615,8 +615,8 @@  discard block
 block discarded – undo
615 615
 			$document->getIndex()
616 616
 					 ->setStatus(IIndex::INDEX_IGNORE);
617 617
 			$this->miscService->log(
618
-				'Exception while generateDocument: ' . $e->getMessage() . ' (' . get_class($e) . ') at '
619
-				. $e->getFile() . ' line ' . $e->getLine()
618
+				'Exception while generateDocument: '.$e->getMessage().' ('.get_class($e).') at '
619
+				. $e->getFile().' line '.$e->getLine()
620 620
 			);
621 621
 		}
622 622
 	}
@@ -819,7 +819,7 @@  discard block
 block discarded – undo
819 819
 
820 820
 		$part = [];
821 821
 		foreach ($comments as $comment) {
822
-			$part[] = '<' . $comment->getActorId() . '> ' . $comment->getMessage();
822
+			$part[] = '<'.$comment->getActorId().'> '.$comment->getMessage();
823 823
 		}
824 824
 
825 825
 		$document->addPart('comments', implode(" \n ", $part));
@@ -854,7 +854,7 @@  discard block
 block discarded – undo
854 854
 					(!is_string($path)) ? $path = '' : $path;
855 855
 			} catch (Throwable $e) {
856 856
 				$this->miscService->log(
857
-					'Issue while getting information on documentId:' . $document->getId(), 0
857
+					'Issue while getting information on documentId:'.$document->getId(), 0
858 858
 				);
859 859
 			}
860 860
 		}
@@ -905,7 +905,7 @@  discard block
 block discarded – undo
905 905
 		}
906 906
 
907 907
 		// 20220219 Parse .drawio file
908
-		if ($extension  === 'drawio') {
908
+		if ($extension === 'drawio') {
909 909
 			$parsed = self::MIMETYPE_TEXT;
910 910
 			throw new KnownFileMimeTypeException();
911 911
 		}
@@ -1022,7 +1022,7 @@  discard block
 block discarded – undo
1022 1022
 		}
1023 1023
 
1024 1024
 		// 20220219 Inflate drawio file
1025
-		if ( $file->getExtension() === 'drawio') {
1025
+		if ($file->getExtension() === 'drawio') {
1026 1026
 			$content = $file->getContent();
1027 1027
 
1028 1028
 			try {
@@ -1042,7 +1042,7 @@  discard block
 block discarded – undo
1042 1042
 
1043 1043
 				    // Construct XML
1044 1044
 				    $diagram_xml = simplexml_load_string($diagram_str);
1045
-				    $content = $content . ' ' . $this->readDrawioXmlValue($diagram_xml);
1045
+				    $content = $content.' '.$this->readDrawioXmlValue($diagram_xml);
1046 1046
 				}
1047 1047
 
1048 1048
 			} catch (\Throwable $t) {
@@ -1074,16 +1074,16 @@  discard block
 block discarded – undo
1074 1074
 	 */
1075 1075
 	private function readDrawioXmlValue(\SimpleXMLElement $element) {
1076 1076
 		$str = '';
1077
-		if( $element['value'] != null && trim(strval($element['value'])) !== '') {
1078
-			$str = $str . " " .  trim(strval($element['value']));
1077
+		if ($element['value'] != null && trim(strval($element['value'])) !== '') {
1078
+			$str = $str." ".trim(strval($element['value']));
1079 1079
 		}
1080
-		if( $element != null && trim(strval($element)) !== '') {
1081
-			$str = $str . " " . trim(strval($element));
1080
+		if ($element != null && trim(strval($element)) !== '') {
1081
+			$str = $str." ".trim(strval($element));
1082 1082
 		}
1083 1083
 
1084 1084
 		try {
1085 1085
 			foreach ($element->children() as $child) {
1086
-				$str = $str . " " . $this->readDrawioXmlValue($child);
1086
+				$str = $str." ".$this->readDrawioXmlValue($child);
1087 1087
 			}
1088 1088
 		} finally {
1089 1089
 		}
@@ -1367,7 +1367,7 @@  discard block
 block discarded – undo
1367 1367
 			$path = '';
1368 1368
 		}
1369 1369
 
1370
-		$result = (($entrySlash) ? '/' : '') . $path;
1370
+		$result = (($entrySlash) ? '/' : '').$path;
1371 1371
 		$this->debug(
1372 1372
 			'getPathFromRoot', [
1373 1373
 				'path' => $path,
Please login to merge, or discard this patch.
lib/Service/GroupFoldersService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 	 * @param FilesDocument $document
160 160
 	 * @param Node $file
161 161
 	 */
162
-	public function updateDocumentAccess(FilesDocument &$document, Node $file) {
162
+	public function updateDocumentAccess(FilesDocument & $document, Node $file) {
163 163
 		if ($document->getSource() !== ConfigService::FILES_GROUP_FOLDERS) {
164 164
 			return;
165 165
 		}
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 		foreach ($mounts as $path => $mount) {
223 223
 			$mountPoint = new MountPoint();
224 224
 			$mountPoint->setId($this->getInt('id', $mount, -1))
225
-					   ->setPath('/' . $userId . '/files/' . $mount['mount_point'])
225
+					   ->setPath('/'.$userId.'/files/'.$mount['mount_point'])
226 226
 					   ->setGroups(array_keys($mount['groups']));
227 227
 			$mountPoints[] = $mountPoint;
228 228
 		}
Please login to merge, or discard this patch.
lib/Service/SearchService.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -122,10 +122,10 @@  discard block
 block discarded – undo
122 122
 	 */
123 123
 	private function searchQueryShareNames(ISearchRequest $request) {
124 124
 		$username = $this->miscService->secureUsername($request->getAuthor());
125
-		$request->addField('share_names.' . $username);
125
+		$request->addField('share_names.'.$username);
126 126
 
127 127
 		$request->addWildcardField('title');
128
-		$request->addWildcardField('share_names.' . $username);
128
+		$request->addWildcardField('share_names.'.$username);
129 129
 	}
130 130
 
131 131
 
@@ -142,8 +142,8 @@  discard block
 block discarded – undo
142 142
 		$currentDir = $this->withoutBeginSlash($this->withEndSlash($currentDir));
143 143
 		$request->addRegexFilters(
144 144
 			[
145
-				['share_names.' . $username => $currentDir . '.*'],
146
-				['title' => $currentDir . '.*']
145
+				['share_names.'.$username => $currentDir.'.*'],
146
+				['title' => $currentDir.'.*']
147 147
 			]
148 148
 		);
149 149
 	}
@@ -161,8 +161,8 @@  discard block
 block discarded – undo
161 161
 		$username = $this->miscService->secureUsername($request->getAuthor());
162 162
 		$request->addRegexFilters(
163 163
 			[
164
-				['share_names.' . $username => '.*\.' . $extension],
165
-				['title' => '.*\.' . $extension]
164
+				['share_names.'.$username => '.*\.'.$extension],
165
+				['title' => '.*\.'.$extension]
166 166
 			]
167 167
 		);
168 168
 	}
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
 		if (in_array('filename', $in)) {
197 197
 			$username = $this->miscService->secureUsername($request->getAuthor());
198
-			$request->addLimitField('share_names.' . $username);
198
+			$request->addLimitField('share_names.'.$username);
199 199
 			$request->addLimitField('title');
200 200
 		}
201 201
 
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
 				$filesDocuments[] = $filesDocument;
248 248
 			} catch (Exception $e) {
249 249
 				$this->miscService->log(
250
-					'Exception while improving searchresult: ' . $e->getMessage() . ' - trace: '
250
+					'Exception while improving searchresult: '.$e->getMessage().' - trace: '
251 251
 					. json_encode($e->getTrace())
252 252
 				);
253 253
 			}
@@ -365,6 +365,6 @@  discard block
 block discarded – undo
365 365
 	private function getWebdavId(int $fileId): string {
366 366
 		$instanceId = $this->configService->getSystemValue('instanceid');
367 367
 
368
-		return sprintf("%08s", $fileId) . $instanceId;
368
+		return sprintf("%08s", $fileId).$instanceId;
369 369
 	}
370 370
 }
Please login to merge, or discard this patch.
lib/AppInfo/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 use OCP\Share\Events\ShareDeletedEvent;
50 50
 use Throwable;
51 51
 
52
-require_once __DIR__ . '/../../vendor/autoload.php';
52
+require_once __DIR__.'/../../vendor/autoload.php';
53 53
 
54 54
 
55 55
 /**
Please login to merge, or discard this patch.