@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | '<error>WARNING! You are about to delete all data related to the Circles App!</error>' |
| 109 | 109 | ); |
| 110 | 110 | $question = new ConfirmationQuestion( |
| 111 | - '<comment>Do you really want to ' . $action . ' Circles ?</comment> (y/N) ', false, |
|
| 111 | + '<comment>Do you really want to '.$action.' Circles ?</comment> (y/N) ', false, |
|
| 112 | 112 | '/^(y|Y)/i' |
| 113 | 113 | ); |
| 114 | 114 | |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | $output->writeln('<error>WARNING! This operation is not reversible.</error>'); |
| 124 | 124 | |
| 125 | 125 | $question = new Question( |
| 126 | - '<comment>Please confirm this destructive operation by typing \'' . $action |
|
| 126 | + '<comment>Please confirm this destructive operation by typing \''.$action |
|
| 127 | 127 | . '\'</comment>: ', '' |
| 128 | 128 | ); |
| 129 | 129 | |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | $this->coreRequestBuilder->uninstall(); |
| 141 | 141 | } |
| 142 | 142 | |
| 143 | - $output->writeln('<info>' . $action . ' done</info>'); |
|
| 143 | + $output->writeln('<info>'.$action.' done</info>'); |
|
| 144 | 144 | |
| 145 | 145 | return 0; |
| 146 | 146 | } |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | $federatedUser = $this->federatedUserService->getLocalFederatedUser($userId); |
| 172 | 172 | $displayName = $this->maintenanceService->updateDisplayName($federatedUser); |
| 173 | 173 | if ($displayName !== '') { |
| 174 | - $output->writeln('Display name of ' . $federatedUser->getSingleId() . ' updated to ' . $displayName); |
|
| 174 | + $output->writeln('Display name of '.$federatedUser->getSingleId().' updated to '.$displayName); |
|
| 175 | 175 | } |
| 176 | 176 | |
| 177 | 177 | return 0; |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | try { |
| 187 | 187 | $this->refreshSingleDisplayName($row['uid'], $output); |
| 188 | 188 | } catch (Exception $e) { |
| 189 | - $output->writeln(get_class($e) . ' while trying to update display name of ' . $row['uid']); |
|
| 189 | + $output->writeln(get_class($e).' while trying to update display name of '.$row['uid']); |
|
| 190 | 190 | } |
| 191 | 191 | } |
| 192 | 192 | } |