Completed
Pull Request — master (#1845)
by Joas
40s
created
lib/Command/SharesFiles.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
 				$recipient = $share->getInitiator();
201 201
 				$sharedTo = $recipient->getDisplayName();
202 202
 				if (!$this->configService->isLocalInstance($recipient->getInstance())) {
203
-					$sharedTo .= '@' . $recipient->getInstance();
203
+					$sharedTo .= '@'.$recipient->getInstance();
204 204
 				}
205 205
 			}
206 206
 			$circle = $share->getCircle();
@@ -210,15 +210,15 @@  discard block
 block discarded – undo
210 210
 				$share->getShareOwner(),
211 211
 				$share->getFileTarget(),
212 212
 				$share->getSharedBy(),
213
-				$circle->getDisplayName() . ' (' . $share->getSharedWith()
214
-				. ', ' . Circle::$DEF_SOURCE[$circle->getSource()] . ')'
213
+				$circle->getDisplayName().' ('.$share->getSharedWith()
214
+				. ', '.Circle::$DEF_SOURCE[$circle->getSource()].')'
215 215
 			];
216 216
 
217 217
 			if (!$filterRecipient) {
218 218
 				$def = ($recipient->hasBasedOn()) ? Circle::$DEF_SOURCE[$recipient->getBasedOn()->getSource()] : 'undef';
219 219
 				$row = array_merge(
220 220
 					$row, [
221
-						$sharedTo . ' (' . $recipient->getSingleId() . ', ' . $def . ')',
221
+						$sharedTo.' ('.$recipient->getSingleId().', '.$def.')',
222 222
 						(($share->getChildId() > 0) ? $share->getChildFileTarget(
223 223
 						) : $share->getFileTarget()),
224 224
 					]
Please login to merge, or discard this patch.
lib/AppInfo/Capabilities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,7 @@
 block discarded – undo
160 160
 			return [];
161 161
 		}
162 162
 		$providerIds = array_map(
163
-			function (ServiceRegistration $registration) {
163
+			function(ServiceRegistration $registration) {
164 164
 				/** @var ITeamResourceProvider $provider */
165 165
 				$provider = $this->container->get($registration->getService());
166 166
 				return $provider->getId();
Please login to merge, or discard this patch.