Completed
Pull Request — master (#586)
by Maxence
02:16
created
lib/Command/CirclesCreate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 		} catch (FederatedItemException $e) {
126 126
 			if ($input->getOption('status-code')) {
127 127
 				throw new FederatedItemException(
128
-					' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage()
128
+					' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage()
129 129
 				);
130 130
 			}
131 131
 
Please login to merge, or discard this patch.
lib/Command/CirclesJoin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 		} catch (FederatedItemException $e) {
126 126
 			if ($input->getOption('status-code')) {
127 127
 				throw new FederatedItemException(
128
-					' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage()
128
+					' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage()
129 129
 				);
130 130
 			}
131 131
 
Please login to merge, or discard this patch.
lib/Command/CirclesEdit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
 		} catch (FederatedItemException $e) {
126 126
 			if ($input->getOption('status-code')) {
127 127
 				throw new FederatedItemException(
128
-					' [' . get_class($e) . ', ' . $e->getStatus() . ']' . "\n" . $e->getMessage()
128
+					' ['.get_class($e).', '.$e->getStatus().']'."\n".$e->getMessage()
129 129
 				);
130 130
 			}
131 131
 
Please login to merge, or discard this patch.
lib/Command/CirclesReport.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
 		$interactiveShell->setCommands($commands);
204 204
 		$interactiveShell->run(
205
-			'Circles Report [<info>' . $report->getSource() . '</info>]:<comment>%PATH%</comment>$'
205
+			'Circles Report [<info>'.$report->getSource().'</info>]:<comment>%PATH%</comment>$'
206 206
 		);
207 207
 	}
208 208
 
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
 	 * @return string[]
215 215
 	 */
216 216
 	public function fillCommandList(string $source, string $field): array {
217
-		echo $source . ' ' . $field . "\n";
217
+		echo $source.' '.$field."\n";
218 218
 
219 219
 		return ['abcd', 'abdde', 'erfg'];
220 220
 	}
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
 	 * @return string
391 391
 	 */
392 392
 	private function obfuscateId(string $id): string {
393
-		return substr($id, 0, 5) . '.' . md5(substr($id, 5));
393
+		return substr($id, 0, 5).'.'.md5(substr($id, 5));
394 394
 	}
395 395
 
396 396
 }
Please login to merge, or discard this patch.