Completed
Pull Request — master (#490)
by Maxence
02:09
created
lib/Command/CirclesTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -135,9 +135,9 @@  discard block
 block discarded – undo
135 135
 		$test->setAsync(true);
136 136
 		$token = $this->gsUpstreamService->newEvent($test);
137 137
 
138
-		$output->writeln('- Async request is sent, now waiting ' . $this->delay . ' seconds');
138
+		$output->writeln('- Async request is sent, now waiting '.$this->delay.' seconds');
139 139
 		sleep($this->delay);
140
-		$output->writeln('- Pause is over, checking results for ' . $token);
140
+		$output->writeln('- Pause is over, checking results for '.$token);
141 141
 
142 142
 		$wrappers = $this->gsUpstreamService->getEventsByToken($token);
143 143
 
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
 		}
148 148
 
149 149
 		foreach ($instances as $instance) {
150
-			$output->write($instance . ' ');
150
+			$output->write($instance.' ');
151 151
 			if (array_key_exists($instance, $result)
152 152
 				&& $result[$instance]->getResult()
153 153
 									 ->gInt('status') === 1) {
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
 	 */
173 173
 	private function testLocalAddress(OutputInterface $output): bool {
174 174
 		$absolute = $this->urlGenerator->linkToRouteAbsolute('core.CSRFToken.index');
175
-		$output->write('- Simple request on ' . $absolute . ': ');
175
+		$output->write('- Simple request on '.$absolute.': ');
176 176
 
177 177
 		$request = new NC19Request('', Request::TYPE_GET);
178 178
 		$this->configService->configureRequest($request);
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 		if ($request->getResultCode() === 200) {
184 184
 			$color = 'info';
185 185
 		}
186
-		$output->writeln('<' . $color . '>' . $request->getResultCode() . '</' . $color . '>');
186
+		$output->writeln('<'.$color.'>'.$request->getResultCode().'</'.$color.'>');
187 187
 
188 188
 		if ($request->getResultCode() === 200) {
189 189
 			return true;
Please login to merge, or discard this patch.
lib/Search/GlobalScaleUsers.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
95 95
 		RequestResultNotJsonException $e
96 96
 		) {
97 97
 			$this->miscService->log(
98
-				'Issue while retrieving instances from lookup: ' . get_class($e) . ' ' . $e->getMessage()
98
+				'Issue while retrieving instances from lookup: '.get_class($e).' '.$e->getMessage()
99 99
 			);
100 100
 
101 101
 			return [];
Please login to merge, or discard this patch.