Passed
Push — master ( bd79d7...95af96 )
by Julius
28:22 queued 11:46
created
lib/private/InitialStateService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
 			return;
70 70
 		}
71 71
 
72
-		$this->logger->warning('Invalid data provided to provideInitialState by ' . $appName);
72
+		$this->logger->warning('Invalid data provided to provideInitialState by '.$appName);
73 73
 	}
74 74
 
75 75
 	public function provideLazyInitialState(string $appName, string $key, Closure $closure): void {
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 			} catch (QueryException $e) {
120 120
 				// Log an continue. We can be fault tolerant here.
121 121
 				$this->logger->logException($e, [
122
-					'message' => 'Could not load initial state provider dynamically: ' . $e->getMessage(),
122
+					'message' => 'Could not load initial state provider dynamically: '.$e->getMessage(),
123 123
 					'level' => ILogger::ERROR,
124 124
 					'app' => $initialState->getAppId(),
125 125
 				]);
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
 			if (!($provider instanceof InitialStateProvider)) {
130 130
 				// Log an continue. We can be fault tolerant here.
131
-				$this->logger->error('Initial state provider is not an InitialStateProvider instance: ' . $initialState->getService(), [
131
+				$this->logger->error('Initial state provider is not an InitialStateProvider instance: '.$initialState->getService(), [
132 132
 					'app' => $initialState->getAppId(),
133 133
 				]);
134 134
 			}
Please login to merge, or discard this patch.