@@ -125,7 +125,7 @@ |
||
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 |
@@ -125,7 +125,7 @@ |
||
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 |
@@ -125,7 +125,7 @@ |
||
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 |
@@ -202,7 +202,7 @@ discard block |
||
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 |
||
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 |
||
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 | } |